temp test with GPIO modul

Signed-off-by: Ebbe Baß <ebbe@ping-mee.de>
master
Ebbe Baß 2022-07-14 10:57:13 +02:00
parent 2c1c294bab
commit 28bb98dc1f
1 changed files with 32 additions and 24 deletions

56
test.py
View File

@ -1,31 +1,39 @@
import gpiozero import gpiozero
import time import time
from datetime import datetime from datetime import datetime
import RPi.GPIO as GPIO
def debug_print(message: str): GPIO.setmode(GPIO.BCM)
now = datetime.now()
current_time = now.strftime("%H:%M:%S")
print('[DEBUG]['+current_time+'] '+message)
def error_print(message: str): GPIO.setup(4, GPIO.OUT)
now = datetime.now() GPIO.output(4, GPIO.LOW)
current_time = now.strftime("%H:%M:%S") time.sleep(1)
print('[ERROR]['+current_time+'] '+message) GPIO.output(4, GPIO.HIGH)
def relay_controller(pin: int, state: str): # def debug_print(message: str):
if state == "True": # now = datetime.now()
relay = gpiozero.OutputDevice(pin, active_high=False, initial_value=False) # current_time = now.strftime("%H:%M:%S")
relay.on() # print('[DEBUG]['+current_time+'] '+message)
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+")")
while True: # def error_print(message: str):
relay_controller(4, "True") # now = datetime.now()
time.sleep(2) # current_time = now.strftime("%H:%M:%S")
relay_controller(4, "False") # print('[ERROR]['+current_time+'] '+message)
time.sleep(2)
# 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+")")
# while True:
# relay_controller(4, "True")
# time.sleep(2)
# relay_controller(4, "False")
# time.sleep(2)