Fetch data via HTTP

This commit is contained in:
suchmememanyskill
2023-11-12 02:33:28 +01:00
parent bf892d6855
commit 6569e428c8
8 changed files with 230 additions and 5 deletions

View File

@@ -519,7 +519,7 @@
#define LV_USE_SPINNER 0
#define LV_USE_TABVIEW 1
#define LV_USE_TABVIEW 0
#define LV_USE_TILEVIEW 0

View File

@@ -100,7 +100,7 @@ void screen_timer_sleep(lv_timer_t *timer)
void screen_timer_setup()
{
screenSleepTimer = lv_timer_create(screen_timer_sleep, 1 * 1000 * 60, NULL);
screenSleepTimer = lv_timer_create(screen_timer_sleep, 5 * 1000 * 60, NULL);
lv_timer_pause(screenSleepTimer);
}