From 760ce18290480e15b98cd69f2a602cbc8af32938 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Sat, 16 Oct 2021 02:05:16 +0100 Subject: [PATCH] Increase pulse length --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 7c6f6fe..0ce0c50 100644 --- a/main.py +++ b/main.py @@ -29,7 +29,7 @@ def set_relay(pin, state): def pulse_relay(pin): set_relay(pin, RELAY_ON) - time.sleep(0.25) + time.sleep(0.5) set_relay(pin, RELAY_OFF) def ring_bell(mac):