Felix Biego
Felix Biego
Currently investigating. I'm also not able to load an image ``` LV_LOG_WARN("FS ready %d", lv_fs_is_ready('A')); /* Confirm if file exists */ if (!file_exists("C:/Users/felix/Documents/lvgl-images/AC.png")) { LV_LOG_WARN("File not found or cannot be...
Thanks for raising this
Have you enabled notification access on the Chronos app?
You can make the changes as below; https://github.com/fbiego/esp32-c3-mini/blob/07e8b48f353db3f37ad4a3cfb202aab5a4af1682/hal/esp32/app_hal.cpp#L1904 ``` int tm = prefs.getInt("timeout", 4); // Set the timeout to always on ``` https://github.com/fbiego/esp32-c3-mini/blob/07e8b48f353db3f37ad4a3cfb202aab5a4af1682/hal/esp32/app_hal.cpp#L1909 ``` navSwitch = prefs.getBool("autonav", true); //Navigation will...
What is the checklist for adding boards? I already see https://github.com/Community-PIO-CH32V/platform-ch32v/blob/develop/misc/svd/CH585.svd present
The needle will not update automatically when the scale is transformed because it is considered a separate object. You’ll need to manually refresh it by calling `lv_scale_set_line_needle_value()` to update the...
seems the configuration is almost similar to the Viewe boards https://github.com/fbiego/esp32-c3-mini/blob/07e8b48f353db3f37ad4a3cfb202aab5a4af1682/platformio.ini#L18 Can you try it? You may need to change pinout https://github.com/fbiego/esp32-c3-mini/blob/07e8b48f353db3f37ad4a3cfb202aab5a4af1682/hal/esp32/displays/pins.h#L169-L184
I see this display has an enable pin. Can you add the line below and try? `#define LCD_EN 42`
Awesome, now that the display works next thing is to configure the touch driver. The display turns off after x seconds because its a setting in the UI, it's a...