We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3597df2 commit 1f4d857Copy full SHA for 1f4d857
src/Braccio++.cpp
@@ -296,6 +296,8 @@ void BraccioClass::display_thread_func()
296
297
void BraccioClass::lvgl_splashScreen(unsigned long const duration_ms, std::function<void()> check_power_func)
298
{
299
+ extern const lv_img_dsc_t img_bulb_gif;
300
+
301
LV_IMG_DECLARE(img_bulb_gif);
302
lv_obj_t* img = lv_gif_create(lv_scr_act());
303
lv_gif_set_src(img, &img_bulb_gif);
src/Braccio++.h
@@ -11,8 +11,6 @@
11
#include "lib/TFT_eSPI/TFT_eSPI.h" // Hardware-specific library
12
#include <lvgl.h>
13
14
-extern const lv_img_dsc_t img_bulb_gif;
15
-
16
enum speed_grade_t {
17
FAST = 10,
18
MEDIUM = 100,
0 commit comments