parent
a162bbf897
commit
2ba3f8d1b7
2
main.py
2
main.py
|
@ -28,9 +28,11 @@ def relay_controller(pin: int, state: str):
|
|||
if state == True:
|
||||
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=False, initial_value=False)
|
||||
relay.off()
|
||||
debug_print("Set relay-pin "+str(pin)+" to state False")
|
||||
else:
|
||||
error_print("Unknown state for relay ("+state+")")
|
||||
|
||||
|
|
Loading…
Reference in New Issue