From 28bb98dc1fefec13cd34450b068619a0eea471e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Thu, 14 Jul 2022 10:57:13 +0200 Subject: [PATCH] temp test with GPIO modul MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- test.py | 56 ++++++++++++++++++++++++++++++++------------------------ 1 file changed, 32 insertions(+), 24 deletions(-) diff --git a/test.py b/test.py index 4355191..a7688d4 100644 --- a/test.py +++ b/test.py @@ -1,31 +1,39 @@ import gpiozero import time 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.BCM) -def error_print(message: str): - now = datetime.now() - current_time = now.strftime("%H:%M:%S") - print('[ERROR]['+current_time+'] '+message) +GPIO.setup(4, GPIO.OUT) +GPIO.output(4, GPIO.LOW) +time.sleep(1) +GPIO.output(4, GPIO.HIGH) -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+")") +# def debug_print(message: str): +# now = datetime.now() +# current_time = now.strftime("%H:%M:%S") +# print('[DEBUG]['+current_time+'] '+message) -while True: - relay_controller(4, "True") - time.sleep(2) - relay_controller(4, "False") - time.sleep(2) \ No newline at end of file +# 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(4, "True") +# time.sleep(2) +# relay_controller(4, "False") +# time.sleep(2) \ No newline at end of file