removed the blinking light after connection as it was taking a lot of iteration time.

Made the sidebar icon use the famous burger
This commit is contained in:
2026-03-07 23:55:43 -05:00
parent ac95358561
commit 72e031a99d
6 changed files with 44 additions and 8 deletions

View File

@@ -58,6 +58,7 @@ internal void set_led_status(led_status status)
}
led_strip_refresh(led_strip);
}
#if CONFIG_CALENDINK_BLINK_IP
internal void led_blink_number(int n, uint8_t r, uint8_t g, uint8_t b)
{
if (n <= 0)
@@ -85,3 +86,4 @@ internal void led_blink_number(int n, uint8_t r, uint8_t g, uint8_t b)
}
vTaskDelay(pdMS_TO_TICKS(1000));
}
#endif