From 1a185ad8e621474f089ea71411b1e2df69df84df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Thu, 14 Jul 2022 01:18:07 +0200 Subject: [PATCH] changed active_high=False from false to truze MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 6171826..c529d67 100644 --- a/main.py +++ b/main.py @@ -26,11 +26,11 @@ def error_print(message: str): #relay def relay_controller(pin: int, state: str): if state == True: - relay = gpiozero.OutputDevice(pin, active_high=False, initial_value=False) + 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=False, initial_value=False) + relay = gpiozero.OutputDevice(pin, active_high=True, initial_value=False) relay.off() debug_print("Set relay-pin "+str(pin)+" to state False") else: