changed back to gpiozero

Signed-off-by: Ebbe Baß <ebbe@ping-mee.de>
master
Ebbe Baß 2022-07-17 16:47:56 +02:00
parent a016945dd9
commit 136832f878
1 changed files with 24 additions and 35 deletions

59
test.py
View File

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