12345678910111213141516171819202122232425262728293031323334353637383940 |
- // This file was generated by SquareLine Studio
- // SquareLine Studio version: SquareLine Studio 1.4.2
- // LVGL version: 8.3.11
- // Project name: SquareLine_Project
- #include "ui.h"
- #include "ui_helpers.h"
- ///////////////////// VARIABLES ////////////////////
- // SCREEN: ui_Screen1
- void ui_Screen1_screen_init(void);
- lv_obj_t * ui_Screen1;
- lv_obj_t * ui_Arc1;
- lv_obj_t * ui____initial_actions0;
- ///////////////////// TEST LVGL SETTINGS ////////////////////
- #if LV_COLOR_DEPTH != 16
- #error "LV_COLOR_DEPTH should be 16bit to match SquareLine Studio's settings"
- #endif
- #if LV_COLOR_16_SWAP !=1
- #error "LV_COLOR_16_SWAP should be 1 to match SquareLine Studio's settings"
- #endif
- ///////////////////// ANIMATIONS ////////////////////
- ///////////////////// FUNCTIONS ////////////////////
- ///////////////////// SCREENS ////////////////////
- void ui_init(void)
- {
- lv_disp_t * dispp = lv_disp_get_default();
- lv_theme_t * theme = lv_theme_basic_init(dispp);
- lv_disp_set_theme(dispp, theme);
- ui_Screen1_screen_init();
- ui____initial_actions0 = lv_obj_create(NULL);
- lv_disp_load_scr(ui_Screen1);
- }
|