From 04fae592f62b073c1db3a3c47a3d9b7410abed3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Thu, 14 Jul 2022 01:51:37 +0200 Subject: [PATCH] test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- test.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test.py b/test.py index 9f076b2..6d32a0a 100644 --- a/test.py +++ b/test.py @@ -14,18 +14,18 @@ def error_print(message: str): def relay_controller(pin: int, state: str): if state == "True": - relay = gpiozero.OutputDevice(pin, active_high=True, initial_value=True) + relay = gpiozero.OutputDevice(pin, active_high=True, initial_value=False) relay.on() debug_print("Set relay-pin "+str(pin)+" to state True") elif state == "False": - relay = gpiozero.OutputDevice(pin, active_high=True, initial_value=True) + relay = gpiozero.OutputDevice(pin, active_high=True, initial_value=False) relay.off() debug_print("Set relay-pin "+str(pin)+" to state False") else: error_print("Unknown state for relay ("+state+")") while True: - relay_controller(4, "True") + relay_controller(17, "True") time.sleep(2) - relay_controller(4, "False") + relay_controller(17, "False") time.sleep(2) \ No newline at end of file