parent
e8f6b4c65b
commit
04fae592f6
8
test.py
8
test.py
|
@ -14,18 +14,18 @@ def error_print(message: str):
|
||||||
|
|
||||||
def relay_controller(pin: int, state: str):
|
def relay_controller(pin: int, state: str):
|
||||||
if state == "True":
|
if state == "True":
|
||||||
relay = gpiozero.OutputDevice(pin, active_high=True, initial_value=True)
|
relay = gpiozero.OutputDevice(pin, active_high=True, initial_value=False)
|
||||||
relay.on()
|
relay.on()
|
||||||
debug_print("Set relay-pin "+str(pin)+" to state True")
|
debug_print("Set relay-pin "+str(pin)+" to state True")
|
||||||
elif state == "False":
|
elif state == "False":
|
||||||
relay = gpiozero.OutputDevice(pin, active_high=True, initial_value=True)
|
relay = gpiozero.OutputDevice(pin, active_high=True, initial_value=False)
|
||||||
relay.off()
|
relay.off()
|
||||||
debug_print("Set relay-pin "+str(pin)+" to state False")
|
debug_print("Set relay-pin "+str(pin)+" to state False")
|
||||||
else:
|
else:
|
||||||
error_print("Unknown state for relay ("+state+")")
|
error_print("Unknown state for relay ("+state+")")
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
relay_controller(4, "True")
|
relay_controller(17, "True")
|
||||||
time.sleep(2)
|
time.sleep(2)
|
||||||
relay_controller(4, "False")
|
relay_controller(17, "False")
|
||||||
time.sleep(2)
|
time.sleep(2)
|
Loading…
Reference in New Issue