changed active_high=False from false to truze
Signed-off-by: Ebbe Baß <ebbe@ping-mee.de>master
parent
2ba3f8d1b7
commit
1a185ad8e6
4
main.py
4
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:
|
||||
|
|
Loading…
Reference in New Issue