Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from kivy.app import App
- from adv_scan import adv_scan
- from kivy.uix.button import Button
- class MyFirstApp(App):
- def build(self):
- button = Button(on_press=adv_scan)
- return button
- if __name__ == '__main__':
- MyFirstApp().run()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement