2022-07-13 23:50:14 +00:00
|
|
|
import time
|
2022-07-17 19:03:01 +00:00
|
|
|
import os
|
2022-07-13 23:50:14 +00:00
|
|
|
from datetime import datetime
|
2022-07-16 22:53:22 +00:00
|
|
|
|
2022-07-17 19:03:01 +00:00
|
|
|
def debug_print(message: str):
|
|
|
|
now = datetime.now()
|
|
|
|
current_time = now.strftime("%H:%M:%S")
|
|
|
|
print('[DEBUG]['+current_time+'] '+message)
|
2022-07-13 23:50:14 +00:00
|
|
|
|
2022-07-17 19:03:01 +00:00
|
|
|
def error_print(message: str):
|
|
|
|
now = datetime.now()
|
|
|
|
current_time = now.strftime("%H:%M:%S")
|
|
|
|
print('[ERROR]['+current_time+'] '+message)
|
|
|
|
|
|
|
|
def relay_controller(pin: int, state: str):
|
|
|
|
if state == "True":
|
2022-07-17 19:12:34 +00:00
|
|
|
os.system('raspi-gpio set '+str(pin)+' op')
|
2022-07-17 19:03:01 +00:00
|
|
|
debug_print("Set relay-pin "+str(pin)+" to state True")
|
|
|
|
elif state == "False":
|
2022-07-17 19:12:34 +00:00
|
|
|
os.system('raspi-gpio set '+str(pin)+' ip')
|
2022-07-17 19:03:01 +00:00
|
|
|
debug_print("Set relay-pin "+str(pin)+" to state False")
|
|
|
|
else:
|
|
|
|
error_print("Unknown state ("+state+") for relay channel "+str(pin))
|
|
|
|
|
|
|
|
channel_1 = 19
|
|
|
|
channel_2 = 16
|
|
|
|
channel_3 = 26
|
|
|
|
channel_4 = 20
|
|
|
|
|
|
|
|
relay_controller(channel_1, "True")
|
|
|
|
time.sleep(2)
|
|
|
|
relay_controller(channel_1, "False")
|
2022-07-17 15:51:16 +00:00
|
|
|
time.sleep(5)
|
2022-07-17 19:03:01 +00:00
|
|
|
|
2022-07-17 19:12:34 +00:00
|
|
|
relay_channels = ["19", "16", "26", "20"]
|
2022-07-17 19:03:01 +00:00
|
|
|
for channel in relay_channels:
|
2022-07-17 19:12:34 +00:00
|
|
|
os.system('raspi-gpio set '+channel+' ip')
|