From 3a6a9e61a1ee369dc9d46de0fd83959e4322f37a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Thu, 14 Jul 2022 01:22:13 +0200 Subject: [PATCH] removed temp debug MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/main.py b/main.py index 34ce2e7..c2f40ae 100644 --- a/main.py +++ b/main.py @@ -25,7 +25,6 @@ def error_print(message: str): #relay def relay_controller(pin: int, state: str): - print(state) if state == "True": relay = gpiozero.OutputDevice(pin, active_high=True, initial_value=False) relay.on()