Signed-off-by: Ebbe Baß <ebbe@ping-mee.de>
master
Ebbe Baß 2022-07-14 01:52:31 +02:00
parent 04fae592f6
commit be42737264
1 changed files with 2 additions and 2 deletions

View File

@ -14,11 +14,11 @@ def error_print(message: str):
def relay_controller(pin: int, state: str):
if state == "True":
relay = gpiozero.OutputDevice(pin, active_high=True, initial_value=False)
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=True, initial_value=False)
relay = gpiozero.OutputDevice(pin, active_high=False, initial_value=False)
relay.off()
debug_print("Set relay-pin "+str(pin)+" to state False")
else: