From 0fd5ded5f9f02ec13e65ab77c65db243a587f062 Mon Sep 17 00:00:00 2001 From: EggMan20339 <99349302+EggMan20339@users.noreply.github.com> Date: Thu, 9 May 2024 20:14:33 -0400 Subject: [PATCH] changes --- main.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index bbd0dac..bb63f23 100644 --- a/main.py +++ b/main.py @@ -326,7 +326,12 @@ while True: GPIO.output(greenLed, GPIO.HIGH) GPIO.output(door, GPIO.HIGH) - time.sleep(0.1) + # time.sleep(5) + for i in range(30): + GPIO.output(door, GPIO.HIGH) + time.sleep(0.01) + GPIO.output(door, GPIO.LOW) + time.sleep(0.01) GPIO.output(greenLed, GPIO.LOW)