Update main.py

master
Ebbe Baß 2021-11-09 18:33:31 +01:00
parent c6b094ba49
commit c743b86ea5
1 changed files with 4 additions and 4 deletions

View File

@ -99,10 +99,10 @@ if __name__ == '__main__':
GPIO.setup(13, GPIO.IN, pull_up_down=GPIO.PUD_UP)
GPIO.setup(19, GPIO.IN, pull_up_down=GPIO.PUD_UP)
# GPIO.add_event_detect(13, GPIO.BOTH, callback=led_power_toggle, bouncetime=300)
# GPIO.add_event_detect(19, GPIO.BOTH, callback=change_idle_mode, bouncetime=300)
GPIO.add_event_detect(13, GPIO.BOTH, callback=test, bouncetime=300)
GPIO.add_event_detect(19, GPIO.BOTH, callback=test, bouncetime=300)
GPIO.add_event_detect(13, GPIO.BOTH, callback=led_power_toggle, bouncetime=300)
GPIO.add_event_detect(19, GPIO.BOTH, callback=change_idle_mode, bouncetime=300)
# GPIO.add_event_detect(13, GPIO.BOTH, callback=test, bouncetime=300)
# GPIO.add_event_detect(19, GPIO.BOTH, callback=test, bouncetime=300)
try:
while True: