changed back top rpi.gpio and pin 17
Signed-off-by: Ebbe Baß <ebbe@ping-mee.de>master
parent
ab9d82f392
commit
c27e4b8c4b
59
test.py
59
test.py
|
@ -1,31 +1,42 @@
|
||||||
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)
|
|
||||||
|
|
||||||
def error_print(message: str):
|
GPIO.setmode(GPIO.BOARD)
|
||||||
now = datetime.now()
|
|
||||||
current_time = now.strftime("%H:%M:%S")
|
|
||||||
print('[ERROR]['+current_time+'] '+message)
|
|
||||||
|
|
||||||
def relay_controller(pin: int, state: str):
|
GPIO.setup(17, GPIO.OUT)
|
||||||
if state == "True":
|
GPIO.output(17, GPIO.HIGH)
|
||||||
relay = gpiozero.OutputDevice(pin, active_high=False, initial_value=False)
|
time.sleep(1)
|
||||||
relay.on()
|
GPIO.output(17, GPIO.LOW)
|
||||||
debug_print("Set relay-pin "+str(pin)+" to state True")
|
time.sleep(1)
|
||||||
elif state == "False":
|
GPIO.cleanup()
|
||||||
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 debug_print(message: str):
|
||||||
relay_controller(17, "True")
|
# now = datetime.now()
|
||||||
time.sleep(2)
|
# current_time = now.strftime("%H:%M:%S")
|
||||||
relay_controller(17, "False")
|
# print('[DEBUG]['+current_time+'] '+message)
|
||||||
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)
|
Loading…
Reference in New Issue