+ Added function to exit app

master
Emily 2018-09-11 18:22:32 +01:00
parent 49125fc3d2
commit 1a4b656270
1 changed files with 9 additions and 0 deletions

View File

@ -99,6 +99,9 @@ freq = {
"C2": 5322, "C2": 5322,
} }
def cbButtonMenu(button_id):
restart_to_default()
def cbButtonCall(button_id): def cbButtonCall(button_id):
sim800.speakervolume(100) sim800.speakervolume(100)
show_screen(0x000000, 0xFFFFFF, "TONE") show_screen(0x000000, 0xFFFFFF, "TONE")
@ -156,6 +159,12 @@ def cbButtonHash(button_id):
vip = False vip = False
ugfx.display_image(0, 0, "holland/brenno.png") ugfx.display_image(0, 0, "holland/brenno.png")
Buttons.enable_interrupt(
Buttons.BTN_Menu,
cbButtonMenu,
on_press=True,
on_release=False);
Buttons.enable_interrupt( Buttons.enable_interrupt(
Buttons.BTN_Call, Buttons.BTN_Call,
cbButtonCall, cbButtonCall,