From 983eccedde63e55b913e3cafa9c2b511423122b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Tue, 9 Nov 2021 18:41:13 +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 5471e8b..75792a8 100644 --- a/main.py +++ b/main.py @@ -94,10 +94,10 @@ if __name__ == '__main__': strip.begin() GPIO.setmode(GPIO.BCM) - GPIO.setup(26, GPIO.IN, pull_up_down=GPIO.PUD_UP) + 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(26, GPIO.BOTH, callback=led_power_toggle, 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)