parent
bd8042ab8f
commit
e8f6b4c65b
4
test.py
4
test.py
|
@ -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=True, initial_value=True)
|
||||
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=True, initial_value=True)
|
||||
relay.off()
|
||||
debug_print("Set relay-pin "+str(pin)+" to state False")
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue