From 924685d2e486ea1946ceb2745ff7d6a7013e2ee0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Tue, 9 Nov 2021 17:27:46 +0100 Subject: [PATCH] Update main.py --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 3a7cb52..121728c 100644 --- a/main.py +++ b/main.py @@ -67,7 +67,7 @@ def blink(strip, color1, color2, iterations=10, wait_ms=10): strip.show() time.sleep(1) -def led_power_toggle(): +def led_power_toggle(led_power): if led_power == True: led_power = False else: @@ -89,7 +89,7 @@ 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(13, GPIO.BOTH, callback=led_power_toggle(led_power), bouncetime=300) GPIO.add_event_detect(19, GPIO.BOTH, callback=change_idle_mode(), bouncetime=300) try: