summaryrefslogtreecommitdiffstats
path: root/lock/util.c
diff options
context:
space:
mode:
authorSadeep Madurange <sadeep@asciimx.com>2025-05-05 12:33:45 +0800
committerSadeep Madurange <sadeep@asciimx.com>2025-05-05 12:33:45 +0800
commit909d4c02a49694af662c10477bb2f8cbfbe4290e (patch)
tree6b790256608d8ab936534f8afee5cd4c8140c252 /lock/util.c
parent605423d76e1f73c5a8590163b841c2db523626f7 (diff)
downloadsmart-home-909d4c02a49694af662c10477bb2f8cbfbe4290e.tar.gz
Full system working.
Diffstat (limited to 'lock/util.c')
-rw-r--r--lock/util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lock/util.c b/lock/util.c
index 5a22ef1..ec5369e 100644
--- a/lock/util.c
+++ b/lock/util.c
@@ -64,11 +64,11 @@ void led_init(void)
void led_locked(void)
{
LED_PORT |= (1 << LOCK_LED);
- _delay_ms(70);
+ _delay_ms(100);
LED_PORT &= ~(1 << LOCK_LED);
- _delay_ms(70);
+ _delay_ms(100);
LED_PORT |= (1 << LOCK_LED);
- _delay_ms(70);
+ _delay_ms(100);
LED_PORT &= ~(1 << LOCK_LED);
}