summaryrefslogtreecommitdiffstats
path: root/lock/util.c
diff options
context:
space:
mode:
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);
}