From 2ba3f8d1b78b0c13bfeecc9ba1820c7aa7bd6448 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Thu, 14 Jul 2022 01:16:30 +0200 Subject: [PATCH] added more debug MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.py b/main.py index 9311190..6171826 100644 --- a/main.py +++ b/main.py @@ -28,9 +28,11 @@ def relay_controller(pin: int, state: str): if state == True: relay = gpiozero.OutputDevice(pin, active_high=False, initial_value=False) relay.on() + debug_print("Set relay-pin "+str(pin)+" to state True") elif state == False: relay = gpiozero.OutputDevice(pin, active_high=False, initial_value=False) relay.off() + debug_print("Set relay-pin "+str(pin)+" to state False") else: error_print("Unknown state for relay ("+state+")")