From d736d1e4e9cea286f135bab9e65df2fe8a8ce466 Mon Sep 17 00:00:00 2001 From: Tilman Date: Wed, 26 Aug 2020 18:21:44 +0000 Subject: [PATCH] Update garage.py --- garage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/garage.py b/garage.py index f0e9223..233ebe0 100644 --- a/garage.py +++ b/garage.py @@ -37,7 +37,7 @@ def motor_button(channel): GPIO.output(PIN_MOTOR, GPIO.HIGH) GPIO.output(PIN_LED, GPIO.LOW) else: - logging.info("fluke (motor button)") + logging.info("flare (motor button)") def remote_button(channel): time.sleep(0.01) @@ -49,7 +49,7 @@ def remote_button(channel): GPIO.output(PIN_REMOTE, GPIO.LOW) GPIO.output(PIN_LED, GPIO.LOW) else: - logging.info("fluke (remote button)") + logging.info("flare (remote button)") GPIO.add_event_detect(PIN_MOTOR_BUTTON, GPIO.FALLING, callback=motor_button, bouncetime=250) GPIO.add_event_detect(PIN_REMOTE_BUTTON, GPIO.FALLING, callback=remote_button, bouncetime=250)