summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSadeep Madurange <sadeep@asciimx.com>2025-06-01 19:08:27 +0800
committerSadeep Madurange <sadeep@asciimx.com>2025-06-01 19:08:27 +0800
commit885e43300d4335a5632d1cbaa01561c5095f9e3d (patch)
tree4441b8c9523d8a9b71638784ed3496bbdf6c9c13
parentc3af6a1638ae5fad6e825c1675beb40c41ae3fca (diff)
downloadsmart-home-885e43300d4335a5632d1cbaa01561c5095f9e3d.tar.gz
Reduce delay in fpm_nok().
-rw-r--r--lock/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lock/client.c b/lock/client.c
index b092ddf..91fe040 100644
--- a/lock/client.c
+++ b/lock/client.c
@@ -70,7 +70,7 @@ static inline void fpm_ok(void)
static inline void fpm_nok(void)
{
fpm_led_on(RED);
- _delay_ms(1000);
+ _delay_ms(500);
fpm_led_off();
}