From d14230535c89efb5ca35e6d79b2b89853029701d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Tue, 9 Nov 2021 18:52:20 +0100 Subject: [PATCH] Update main.py --- main.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/main.py b/main.py index 75792a8..38efebb 100644 --- a/main.py +++ b/main.py @@ -92,15 +92,11 @@ def test(): if __name__ == '__main__': strip = Adafruit_NeoPixel(LED_COUNT, LED_PIN, LED_FREQ_HZ, LED_DMA, LED_INVERT, LED_BRIGHTNESS, LED_CHANNEL) strip.begin() - GPIO.setmode(GPIO.BCM) - + GPIO.setmode(GPIO.BOARD) 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) try: while True: