存档:设置界面新增内容;坐标&游标编号转换;设置颜色函数封装(进度33%)
This commit is contained in:
parent
4fefdd6e8e
commit
aae0ffd0f5
|
@ -2,7 +2,7 @@
|
||||||
* @Author: wujunchao wujunchao@wuxismart.com
|
* @Author: wujunchao wujunchao@wuxismart.com
|
||||||
* @Date: 2024-12-27 11:51:06
|
* @Date: 2024-12-27 11:51:06
|
||||||
* @LastEditors: wujunchao wujunchao@wuxismart.com
|
* @LastEditors: wujunchao wujunchao@wuxismart.com
|
||||||
* @LastEditTime: 2025-03-13 11:52:18
|
* @LastEditTime: 2025-03-14 10:33:11
|
||||||
* @FilePath: \signal_generator\App\APP_WU\Inc\apps_gather.h
|
* @FilePath: \signal_generator\App\APP_WU\Inc\apps_gather.h
|
||||||
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
||||||
*/
|
*/
|
||||||
|
@ -197,6 +197,21 @@ extern const lv_img_dsc_t * screen_main_ani_out_sign_imgs[3];
|
||||||
#define ITEMS_3 3
|
#define ITEMS_3 3
|
||||||
//设置界面,选项卡2(从上往下数)
|
//设置界面,选项卡2(从上往下数)
|
||||||
|
|
||||||
|
//选项卡未选中时的底色(白:0xffffff,黑:0x000000)
|
||||||
|
#define COLOR_ITEMS_UNCHECKED 0xffffff
|
||||||
|
|
||||||
|
//选项卡选中时的底色
|
||||||
|
#define COLOR_ITEMS_CHECKED 0xcbefff
|
||||||
|
|
||||||
|
//内容未选中时的底色
|
||||||
|
#define COLOR_CONTENTS_UNCHECKED 0xffffff
|
||||||
|
|
||||||
|
//内容选中时的底色
|
||||||
|
#define COLOR_CONTENTS_CHECKED 0xcbefff
|
||||||
|
|
||||||
|
//内容焦点后的底色
|
||||||
|
#define COLOR_CONTENTS_FOCUSED 0X9dffb0
|
||||||
|
|
||||||
//}
|
//}
|
||||||
|
|
||||||
typedef enum
|
typedef enum
|
||||||
|
@ -303,10 +318,13 @@ typedef struct
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
uint8_t tab_cursor; //选项卡游标,后续根据实际需求进行宏定义
|
uint8_t item_cursor; //选项卡游标,后续根据实际需求进行宏定义
|
||||||
uint8_t tab_cursor_prv; //前一时刻的选项卡游标
|
uint8_t item_cursor_prv; //前一时刻的选项卡游标
|
||||||
uint8_t tab_cursor_inner; //选项内部的游标, 99代表未选中。
|
uint8_t content_cursor; //选项内部的游标, 最大范围0~35(6行6列,从左至右,从上至下),99代表未选中。
|
||||||
uint8_t tab_cursor_inner_prv; //前一时刻的内部游标
|
uint8_t content_cursor_prv; //前一时刻的内部游标
|
||||||
|
uint8_t content_focus; //内容焦点
|
||||||
|
uint8_t content_cursor_x; //游标的横坐标,从左至右,最大范围0~5
|
||||||
|
uint8_t content_cursor_y; //游标的纵坐标,从上至下,最大范围0~5
|
||||||
|
|
||||||
//ITEMS0
|
//ITEMS0
|
||||||
SIG_FUNCTIONS_TYPE content00; //暂定电压单位V/mV
|
SIG_FUNCTIONS_TYPE content00; //暂定电压单位V/mV
|
||||||
|
@ -402,12 +420,24 @@ void input_value_show(void);
|
||||||
//输入输出、ON&OFF状态指示
|
//输入输出、ON&OFF状态指示
|
||||||
void io_on2off_status(void);
|
void io_on2off_status(void);
|
||||||
|
|
||||||
//设置界面选项卡选中:点亮cursor;熄灭cursor_prv;tab_cont = 0 选项卡,tab_cont = 1 内容。
|
//设置界面选项卡选中:点亮cursor;熄灭cursor_prv
|
||||||
void setting_items_check(uint8_t cursor, uint8_t cursor_prv, uint8_t tab_cont);
|
void setting_items_check(uint8_t cursor, uint8_t cursor_prv);
|
||||||
|
|
||||||
|
//设置界面选项卡内部内容选中:点亮cursor;熄灭cursor_prv;焦点focus
|
||||||
|
void setting_contents_check(uint8_t cursor, uint8_t cursor_prv);
|
||||||
|
|
||||||
|
//设置界面选项卡内部内容选中之后,修改内容,修改第ite个选项卡的第con个内容
|
||||||
|
void setting_contents_modify(uint8_t ite, uint8_t con, uint8_t key_val);
|
||||||
|
|
||||||
//返回键按下后,将设置项的内容更新,更新第ite个选项卡的第con个内容
|
//返回键按下后,将设置项的内容更新,更新第ite个选项卡的第con个内容
|
||||||
void setting_update(uint8_t ite, uint8_t con);
|
void setting_update(uint8_t ite, uint8_t con);
|
||||||
|
|
||||||
|
//将游标的横纵坐标转换成游标值,x[0,5], y[0,5], cursor[0,35]
|
||||||
|
uint8_t contents_xy2cursor(uint8_t px, uint8_t py);
|
||||||
|
|
||||||
|
//设置内容的底色
|
||||||
|
void set_contents_color(uint8_t cursor, uint32_t color);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**********test5**********/
|
/**********test5**********/
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @Author: wujunchao wujunchao@wuxismart.com
|
* @Author: wujunchao wujunchao@wuxismart.com
|
||||||
* @Date: 2024-12-27 11:50:56
|
* @Date: 2024-12-27 11:50:56
|
||||||
* @LastEditors: wujunchao wujunchao@wuxismart.com
|
* @LastEditors: wujunchao wujunchao@wuxismart.com
|
||||||
* @LastEditTime: 2025-03-13 14:43:02
|
* @LastEditTime: 2025-03-14 15:24:08
|
||||||
* @FilePath: \signal_generator\App\APP_WU\Src\apps_gather.c
|
* @FilePath: \signal_generator\App\APP_WU\Src\apps_gather.c
|
||||||
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
||||||
*/
|
*/
|
||||||
|
@ -150,10 +150,13 @@ void menu_data_init(void)
|
||||||
// }
|
// }
|
||||||
|
|
||||||
//screen_setting
|
//screen_setting
|
||||||
tabdata.tab_cursor = 0; //选项卡的游标(焦点)
|
tabdata.item_cursor = 0; //选项卡的游标(焦点)
|
||||||
tabdata.tab_cursor_prv = 0; //前一刻的选项卡游标
|
tabdata.item_cursor_prv = 0; //前一刻的选项卡游标
|
||||||
tabdata.tab_cursor_inner = 99; //某一选项卡内部的游标
|
tabdata.content_cursor = 99; //某一选项卡内部的游标
|
||||||
tabdata.tab_cursor_inner_prv = 99; //前一刻的~
|
tabdata.content_cursor_prv = 99; //前一刻的~
|
||||||
|
tabdata.content_focus = 0; //默认无焦点
|
||||||
|
tabdata.content_cursor_x = 0;
|
||||||
|
tabdata.content_cursor_y = 0;
|
||||||
|
|
||||||
//暂定,用于组件测试
|
//暂定,用于组件测试
|
||||||
tabdata.content00 = VOLTAGE_V; //第0个选项卡的第0个内容
|
tabdata.content00 = VOLTAGE_V; //第0个选项卡的第0个内容
|
||||||
|
@ -377,16 +380,8 @@ void key_functions_main(void)
|
||||||
{
|
{
|
||||||
key = 0;
|
key = 0;
|
||||||
|
|
||||||
//为保障安全,进入菜单页面后功能关闭,输入输出值清零
|
//恢复默认工作模式:关闭、电压V输出
|
||||||
m5data.io_on2off = IO_OFF;
|
set_working_mode(SIG_VOLTAGE, VOLTAGE_V);
|
||||||
for(uint8_t i = 0; i < 6; i++) //用于数值显示的数组,初值为0
|
|
||||||
{
|
|
||||||
m5data.i_numbers[i] = 0; //输入值/测量值
|
|
||||||
m5data.o_numbers[i] = 0; //输出值/设定值
|
|
||||||
}
|
|
||||||
m5data.twk_flag = 0; //闪烁中止
|
|
||||||
m5data.twk_cnt = 0; //闪烁计数清零
|
|
||||||
m5data.twk_flip = 0; //0显示,1不显示
|
|
||||||
|
|
||||||
//加载菜单界面
|
//加载菜单界面
|
||||||
setup_scr_screen_setting(&guider_ui);
|
setup_scr_screen_setting(&guider_ui);
|
||||||
|
@ -959,23 +954,31 @@ void set_nixie_cube(uint8_t io_slc, uint8_t pos, int32_t num)
|
||||||
//显示当前测量值,从左往右 0->6
|
//显示当前测量值,从左往右 0->6
|
||||||
temp = (num/1000000 > 9)?(0):(num/1000000);
|
temp = (num/1000000 > 9)?(0):(num/1000000);
|
||||||
lv_img_set_src(guider_ui.screen_main_ani_in_0, screen_main_ani_in_0_imgs[temp]);
|
lv_img_set_src(guider_ui.screen_main_ani_in_0, screen_main_ani_in_0_imgs[temp]);
|
||||||
|
m5data.i_numbers[0] = temp;
|
||||||
|
|
||||||
temp = (num/100000) % 10;
|
temp = (num/100000) % 10;
|
||||||
lv_img_set_src(guider_ui.screen_main_ani_in_1, screen_main_ani_in_1_imgs[temp]);
|
lv_img_set_src(guider_ui.screen_main_ani_in_1, screen_main_ani_in_1_imgs[temp]);
|
||||||
|
m5data.i_numbers[1] = temp;
|
||||||
|
|
||||||
temp = (num/10000) % 10;
|
temp = (num/10000) % 10;
|
||||||
lv_img_set_src(guider_ui.screen_main_ani_in_2, screen_main_ani_in_2_imgs[temp]);
|
lv_img_set_src(guider_ui.screen_main_ani_in_2, screen_main_ani_in_2_imgs[temp]);
|
||||||
|
m5data.i_numbers[2] = temp;
|
||||||
|
|
||||||
temp = (num/1000) % 10;
|
temp = (num/1000) % 10;
|
||||||
lv_img_set_src(guider_ui.screen_main_ani_in_3, screen_main_ani_in_3_imgs[temp]);
|
lv_img_set_src(guider_ui.screen_main_ani_in_3, screen_main_ani_in_3_imgs[temp]);
|
||||||
|
m5data.i_numbers[3] = temp;
|
||||||
|
|
||||||
temp = (num/100) % 10;
|
temp = (num/100) % 10;
|
||||||
lv_img_set_src(guider_ui.screen_main_ani_in_4, screen_main_ani_in_4_imgs[temp]);
|
lv_img_set_src(guider_ui.screen_main_ani_in_4, screen_main_ani_in_4_imgs[temp]);
|
||||||
|
m5data.i_numbers[4] = temp;
|
||||||
|
|
||||||
temp = (num/10) % 10;
|
temp = (num/10) % 10;
|
||||||
lv_img_set_src(guider_ui.screen_main_ani_in_5, screen_main_ani_in_5_imgs[temp]);
|
lv_img_set_src(guider_ui.screen_main_ani_in_5, screen_main_ani_in_5_imgs[temp]);
|
||||||
|
m5data.i_numbers[5] = temp;
|
||||||
|
|
||||||
temp = num % 10;
|
temp = num % 10;
|
||||||
lv_img_set_src(guider_ui.screen_main_ani_in_6, screen_main_ani_in_6_imgs[temp]);
|
lv_img_set_src(guider_ui.screen_main_ani_in_6, screen_main_ani_in_6_imgs[temp]);
|
||||||
|
m5data.i_numbers[6] = temp;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -2035,10 +2038,10 @@ void key_functions_setting(void)
|
||||||
key = 0;
|
key = 0;
|
||||||
|
|
||||||
//所有选项卡均未选中时,返回主界面,否则熄灭当前选中
|
//所有选项卡均未选中时,返回主界面,否则熄灭当前选中
|
||||||
if(tabdata.tab_cursor_inner == 99)
|
if(tabdata.content_cursor == 99)
|
||||||
{
|
{
|
||||||
//下次进入设置页面时,从选项卡0开始
|
//下次进入设置页面时,从选项卡0开始
|
||||||
tabdata.tab_cursor = 0;
|
tabdata.item_cursor = 0;
|
||||||
|
|
||||||
//加载主界面
|
//加载主界面
|
||||||
setup_scr_screen_main(&guider_ui);
|
setup_scr_screen_main(&guider_ui);
|
||||||
|
@ -2055,38 +2058,49 @@ void key_functions_setting(void)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
if(tabdata.content_focus == 0)
|
||||||
|
{
|
||||||
|
//当不存在焦点时
|
||||||
//某个选项卡被选中时,熄灭内部选中的内容
|
//某个选项卡被选中时,熄灭内部选中的内容
|
||||||
switch (tabdata.tab_cursor)
|
switch (tabdata.item_cursor)
|
||||||
{
|
{
|
||||||
case ITEMS_0:
|
case ITEMS_0:
|
||||||
{
|
{
|
||||||
//熄灭当前内容
|
//熄灭当前内容
|
||||||
setting_items_check(99, tabdata.tab_cursor_inner, 1);
|
setting_contents_check(99, tabdata.content_cursor);
|
||||||
|
|
||||||
tabdata.tab_cursor_inner = 99;
|
//取消内容选中与焦点
|
||||||
tabdata.tab_cursor_inner_prv = 99;
|
tabdata.content_cursor = 99;
|
||||||
|
tabdata.content_cursor_prv = 99;
|
||||||
|
tabdata.content_focus = 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ITEMS_1:
|
case ITEMS_1:
|
||||||
{
|
{
|
||||||
tabdata.tab_cursor_inner = 99;
|
//取消内容选中与焦点
|
||||||
tabdata.tab_cursor_inner_prv = 99;
|
tabdata.content_cursor = 99;
|
||||||
|
tabdata.content_cursor_prv = 99;
|
||||||
|
tabdata.content_focus = 0;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ITEMS_2:
|
case ITEMS_2:
|
||||||
{
|
{
|
||||||
tabdata.tab_cursor_inner = 99;
|
//取消内容选中与焦点
|
||||||
tabdata.tab_cursor_inner_prv = 99;
|
tabdata.content_cursor = 99;
|
||||||
|
tabdata.content_cursor_prv = 99;
|
||||||
|
tabdata.content_focus = 0;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ITEMS_3:
|
case ITEMS_3:
|
||||||
{
|
{
|
||||||
tabdata.tab_cursor_inner = 99;
|
//取消内容选中与焦点
|
||||||
tabdata.tab_cursor_inner_prv = 99;
|
tabdata.content_cursor = 99;
|
||||||
|
tabdata.content_cursor_prv = 99;
|
||||||
|
tabdata.content_focus = 0;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -2094,6 +2108,13 @@ void key_functions_setting(void)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//当存在焦点时
|
||||||
|
tabdata.content_focus = 0;
|
||||||
|
setting_contents_check(tabdata.content_cursor, 99);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -2102,20 +2123,365 @@ void key_functions_setting(void)
|
||||||
key = 0;
|
key = 0;
|
||||||
|
|
||||||
//内部游标为99时,说明未选中任何一个选项卡,此时的up和down用于切换选项卡
|
//内部游标为99时,说明未选中任何一个选项卡,此时的up和down用于切换选项卡
|
||||||
if(tabdata.tab_cursor_inner == 99)
|
if(tabdata.content_cursor == 99)
|
||||||
{
|
{
|
||||||
tabdata.tab_cursor_prv = tabdata.tab_cursor;
|
tabdata.item_cursor_prv = tabdata.item_cursor;
|
||||||
tabdata.tab_cursor = (tabdata.tab_cursor <= 0)?(3):(tabdata.tab_cursor - 1);
|
tabdata.item_cursor = (tabdata.item_cursor <= 0)?(3):(tabdata.item_cursor - 1);
|
||||||
|
|
||||||
setting_items_check(tabdata.tab_cursor, tabdata.tab_cursor_prv, 0);
|
setting_items_check(tabdata.item_cursor, tabdata.item_cursor_prv);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{ //选中某一选项卡后,对选项卡内部的内容进行选择
|
{
|
||||||
switch (tabdata.tab_cursor)
|
//某个内容被焦点前,在此处选择内容值
|
||||||
|
if(tabdata.content_focus == 0)
|
||||||
|
{
|
||||||
|
tabdata.content_cursor_prv = tabdata.content_cursor;
|
||||||
|
|
||||||
|
tabdata.content_cursor_y = (tabdata.content_cursor_y <= 0)?(5):(tabdata.content_cursor_y - 1);
|
||||||
|
tabdata.content_cursor = contents_xy2cursor(tabdata.content_cursor_x, tabdata.content_cursor_y);
|
||||||
|
|
||||||
|
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//某个内容被焦点前,在此处修改内容值
|
||||||
|
setting_contents_modify(tabdata.item_cursor, tabdata.content_cursor, KEY_UP);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case KEY_DOWN:
|
||||||
|
{
|
||||||
|
key = 0;
|
||||||
|
|
||||||
|
//内部游标为99时,说明未选中任何一个选项卡,此时的up和down用于切换选项卡
|
||||||
|
if(tabdata.content_cursor == 99)
|
||||||
|
{
|
||||||
|
tabdata.item_cursor_prv = tabdata.item_cursor;
|
||||||
|
tabdata.item_cursor = (tabdata.item_cursor >= 3)?(0):(tabdata.item_cursor + 1);
|
||||||
|
|
||||||
|
setting_items_check(tabdata.item_cursor, tabdata.item_cursor_prv);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if(tabdata.content_focus == 0)
|
||||||
|
{
|
||||||
|
//某个内容被焦点前,在此处选择内容值
|
||||||
|
tabdata.content_cursor_prv = tabdata.content_cursor;
|
||||||
|
|
||||||
|
tabdata.content_cursor_y = (tabdata.content_cursor_y <= 0)?(5):(tabdata.content_cursor_y + 1);
|
||||||
|
tabdata.content_cursor = contents_xy2cursor(tabdata.content_cursor_x, tabdata.content_cursor_y);
|
||||||
|
|
||||||
|
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//某个内容被焦点后,在此处修改内容值
|
||||||
|
setting_contents_modify(tabdata.item_cursor, tabdata.content_cursor, KEY_DOWN);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case KEY_OK:
|
||||||
|
{
|
||||||
|
key = 0;
|
||||||
|
|
||||||
|
//OK键用于选择选项卡时:选项卡未选中时内部内容全部熄灭,选中后点亮第一个内容
|
||||||
|
if(tabdata.content_cursor == 99)
|
||||||
|
{
|
||||||
|
switch (tabdata.item_cursor)
|
||||||
{
|
{
|
||||||
case ITEMS_0:
|
case ITEMS_0:
|
||||||
{
|
{
|
||||||
switch (tabdata.tab_cursor_inner)
|
tabdata.content_cursor = 0;
|
||||||
|
tabdata.content_cursor_prv = 0;
|
||||||
|
|
||||||
|
setting_contents_check(tabdata.content_cursor, 99);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_1:
|
||||||
|
{
|
||||||
|
tabdata.content_cursor = 0;
|
||||||
|
tabdata.content_cursor_prv = 0;
|
||||||
|
|
||||||
|
setting_contents_check(tabdata.content_cursor, 99);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_2:
|
||||||
|
{
|
||||||
|
tabdata.content_cursor = 0;
|
||||||
|
tabdata.content_cursor_prv = 0;
|
||||||
|
|
||||||
|
setting_contents_check(tabdata.content_cursor, 99);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_3:
|
||||||
|
{
|
||||||
|
tabdata.content_cursor = 0;
|
||||||
|
tabdata.content_cursor_prv = 0;
|
||||||
|
|
||||||
|
setting_contents_check(tabdata.content_cursor, 99);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//进入此处说明选项卡已被选中,此时需要选择内容
|
||||||
|
//内容焦点后,通过KEY_UP和KEY_DOWN修改
|
||||||
|
//KEY_BACK按下后,取消焦点
|
||||||
|
tabdata.content_focus = 1;
|
||||||
|
|
||||||
|
setting_contents_check(tabdata.content_cursor, 99);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
//仅用于选择内容
|
||||||
|
case KEY_LEFT:
|
||||||
|
{
|
||||||
|
key = 0;
|
||||||
|
|
||||||
|
if( (tabdata.content_cursor == 99)||(tabdata.content_focus == 1) )
|
||||||
|
{
|
||||||
|
//选项卡未选中时,直接返回
|
||||||
|
//已经存在焦点时,直接返回
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (tabdata.item_cursor)
|
||||||
|
{
|
||||||
|
case ITEMS_0:
|
||||||
|
{
|
||||||
|
tabdata.content_cursor_prv = tabdata.content_cursor;
|
||||||
|
|
||||||
|
tabdata.content_cursor_x = (tabdata.content_cursor_x <= 0)?(2):(tabdata.content_cursor_x - 1);
|
||||||
|
tabdata.content_cursor = contents_xy2cursor(tabdata.content_cursor_x, tabdata.content_cursor_y);
|
||||||
|
|
||||||
|
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_1:
|
||||||
|
{}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_2:
|
||||||
|
{}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_3:
|
||||||
|
{
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
//仅用于选择内容
|
||||||
|
case KEY_RIGHT:
|
||||||
|
{
|
||||||
|
key = 0;
|
||||||
|
|
||||||
|
if( (tabdata.content_cursor == 99)||(tabdata.content_focus == 1) )
|
||||||
|
{
|
||||||
|
//选项卡未选中时,直接返回
|
||||||
|
//已经存在焦点时,直接返回
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (tabdata.item_cursor)
|
||||||
|
{
|
||||||
|
case ITEMS_0:
|
||||||
|
{
|
||||||
|
tabdata.content_cursor_prv = tabdata.content_cursor;
|
||||||
|
|
||||||
|
tabdata.content_cursor_x = (tabdata.content_cursor_x >= 2)?(0):(tabdata.content_cursor_x + 1);
|
||||||
|
tabdata.content_cursor = contents_xy2cursor(tabdata.content_cursor_x, tabdata.content_cursor_y);
|
||||||
|
|
||||||
|
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_1:
|
||||||
|
{}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_2:
|
||||||
|
{}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_3:
|
||||||
|
{
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
{
|
||||||
|
key = 0;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void setting_items_check(uint8_t cursor, uint8_t cursor_prv)
|
||||||
|
{
|
||||||
|
//操作选项卡
|
||||||
|
switch (cursor) //点亮当前选中目标
|
||||||
|
{
|
||||||
|
case ITEMS_0:
|
||||||
|
{
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s0, lv_color_hex(COLOR_ITEMS_CHECKED), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
lv_obj_clear_flag(guider_ui.screen_setting_label_01, LV_OBJ_FLAG_HIDDEN);
|
||||||
|
lv_obj_clear_flag(guider_ui.screen_setting_label_03, LV_OBJ_FLAG_HIDDEN);
|
||||||
|
lv_obj_clear_flag(guider_ui.screen_setting_label_05, LV_OBJ_FLAG_HIDDEN);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_1:
|
||||||
|
{
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s1, lv_color_hex(COLOR_ITEMS_CHECKED), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
lv_obj_add_flag(guider_ui.screen_setting_label_01, LV_OBJ_FLAG_HIDDEN);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_2:
|
||||||
|
{
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s2, lv_color_hex(COLOR_ITEMS_CHECKED), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
lv_obj_add_flag(guider_ui.screen_setting_label_03, LV_OBJ_FLAG_HIDDEN);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_3:
|
||||||
|
{
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s3, lv_color_hex(COLOR_ITEMS_CHECKED), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
lv_obj_add_flag(guider_ui.screen_setting_label_05, LV_OBJ_FLAG_HIDDEN);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (cursor_prv) //熄灭前一时刻的目标
|
||||||
|
{
|
||||||
|
case ITEMS_0:
|
||||||
|
{
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s0, lv_color_hex(COLOR_ITEMS_UNCHECKED), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_1:
|
||||||
|
{
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s1, lv_color_hex(COLOR_ITEMS_UNCHECKED), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_2:
|
||||||
|
{
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s2, lv_color_hex(COLOR_ITEMS_UNCHECKED), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_3:
|
||||||
|
{
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s3, lv_color_hex(COLOR_ITEMS_UNCHECKED), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
//设置界面选项卡内部内容选中:点亮cursor;熄灭cursor_prv;焦点focus
|
||||||
|
void setting_contents_check(uint8_t cursor, uint8_t cursor_prv)
|
||||||
|
{
|
||||||
|
//根据焦点与否切换点亮时的颜色
|
||||||
|
uint32_t color = 0;
|
||||||
|
if(tabdata.content_focus)
|
||||||
|
{
|
||||||
|
color = COLOR_CONTENTS_FOCUSED;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
color = COLOR_CONTENTS_CHECKED;
|
||||||
|
}
|
||||||
|
|
||||||
|
//操作内容
|
||||||
|
switch (tabdata.item_cursor)
|
||||||
|
{
|
||||||
|
case ITEMS_0:
|
||||||
|
{
|
||||||
|
//点亮cursor
|
||||||
|
set_contents_color(cursor, color);
|
||||||
|
|
||||||
|
//熄灭cursor_prv
|
||||||
|
color = COLOR_CONTENTS_UNCHECKED;
|
||||||
|
set_contents_color(cursor_prv, color);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_1:
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_2:
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_3:
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//设置界面选项卡内部内容选中之后,修改内容,修改第ite个选项卡的第con个内容
|
||||||
|
void setting_contents_modify(uint8_t ite, uint8_t con, uint8_t key_val)
|
||||||
|
{
|
||||||
|
switch (key_val)
|
||||||
|
{
|
||||||
|
case KEY_UP:
|
||||||
|
{
|
||||||
|
//选中某一选项卡后,对选项卡内部的内容进行选择
|
||||||
|
switch (ite)
|
||||||
|
{
|
||||||
|
case ITEMS_0:
|
||||||
|
{
|
||||||
|
switch (con)
|
||||||
{
|
{
|
||||||
case CONTENT_0_0:
|
case CONTENT_0_0:
|
||||||
{
|
{
|
||||||
|
@ -2208,226 +2574,61 @@ void key_functions_setting(void)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case KEY_DOWN:
|
case KEY_DOWN:
|
||||||
{
|
{}
|
||||||
key = 0;
|
|
||||||
|
|
||||||
if(tabdata.tab_cursor_inner == 99)
|
|
||||||
{
|
|
||||||
tabdata.tab_cursor_prv = tabdata.tab_cursor;
|
|
||||||
tabdata.tab_cursor = (tabdata.tab_cursor >= 3)?(0):(tabdata.tab_cursor + 1);
|
|
||||||
|
|
||||||
setting_items_check(tabdata.tab_cursor, tabdata.tab_cursor_prv, 0);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
switch (tabdata.tab_cursor)
|
|
||||||
{
|
|
||||||
case ITEMS_0:
|
|
||||||
{
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ITEMS_1:
|
|
||||||
{
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ITEMS_2:
|
|
||||||
{
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ITEMS_3:
|
|
||||||
{
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case KEY_OK:
|
|
||||||
{
|
|
||||||
key = 0;
|
|
||||||
|
|
||||||
switch (tabdata.tab_cursor)
|
|
||||||
{
|
|
||||||
case ITEMS_0:
|
|
||||||
{
|
|
||||||
if(tabdata.tab_cursor_inner == 99)
|
|
||||||
{
|
|
||||||
tabdata.tab_cursor_inner = 0;
|
|
||||||
tabdata.tab_cursor_inner_prv = 0;
|
|
||||||
|
|
||||||
setting_items_check(tabdata.tab_cursor_inner, 99, 1);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ITEMS_1:
|
|
||||||
{
|
|
||||||
tabdata.tab_cursor_inner = 0;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ITEMS_2:
|
|
||||||
{
|
|
||||||
tabdata.tab_cursor_inner = 0;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ITEMS_3:
|
|
||||||
{
|
|
||||||
tabdata.tab_cursor_inner = 0;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case KEY_LEFT:
|
case KEY_LEFT:
|
||||||
{
|
|
||||||
key = 0;
|
|
||||||
|
|
||||||
switch (tabdata.tab_cursor)
|
|
||||||
{
|
|
||||||
case ITEMS_0:
|
|
||||||
{
|
|
||||||
tabdata.tab_cursor_inner_prv = tabdata.tab_cursor_inner;
|
|
||||||
tabdata.tab_cursor_inner = (tabdata.tab_cursor_inner <= 0)?(2):(tabdata.tab_cursor_inner - 1);
|
|
||||||
|
|
||||||
setting_items_check(tabdata.tab_cursor_inner, tabdata.tab_cursor_inner_prv, 1);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ITEMS_1:
|
|
||||||
{}
|
{}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ITEMS_2:
|
|
||||||
{}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ITEMS_3:
|
|
||||||
{
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case KEY_RIGHT:
|
case KEY_RIGHT:
|
||||||
{
|
|
||||||
key = 0;
|
|
||||||
|
|
||||||
switch (tabdata.tab_cursor)
|
|
||||||
{
|
|
||||||
case ITEMS_0:
|
|
||||||
{
|
|
||||||
tabdata.tab_cursor_inner_prv = tabdata.tab_cursor_inner;
|
|
||||||
tabdata.tab_cursor_inner = (tabdata.tab_cursor_inner >= 2)?(0):(tabdata.tab_cursor_inner + 1);
|
|
||||||
|
|
||||||
setting_items_check(tabdata.tab_cursor_inner, tabdata.tab_cursor_inner_prv, 1);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ITEMS_1:
|
|
||||||
{}
|
{}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ITEMS_2:
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
switch (ite)
|
||||||
|
{
|
||||||
|
case ITEMS_0:
|
||||||
|
{
|
||||||
|
switch (con)
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
{}
|
{}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ITEMS_3:
|
|
||||||
{
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
case ITEMS_1:
|
||||||
{
|
{
|
||||||
key = 0;
|
switch (con)
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void setting_items_check(uint8_t cursor, uint8_t cursor_prv, uint8_t tab_cont)
|
|
||||||
{
|
|
||||||
//需要操作的是内容还是选项卡
|
|
||||||
if(tab_cont)
|
|
||||||
{
|
|
||||||
//操作内容
|
|
||||||
switch (tabdata.tab_cursor)
|
|
||||||
{
|
|
||||||
case ITEMS_0:
|
|
||||||
{
|
|
||||||
switch (cursor) //点亮cursor
|
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
{
|
{}
|
||||||
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_01, lv_color_hex(0xcbefff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 1:
|
|
||||||
{
|
|
||||||
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_03, lv_color_hex(0xcbefff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 2:
|
|
||||||
{
|
|
||||||
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_05, lv_color_hex(0xcbefff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
switch (cursor_prv) //熄灭cursor_prv
|
case ITEMS_2:
|
||||||
|
{
|
||||||
|
switch (con)
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
{
|
{}
|
||||||
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_01, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 1:
|
|
||||||
{
|
|
||||||
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_03, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 2:
|
|
||||||
{
|
|
||||||
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_05, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
@ -2436,101 +2637,23 @@ void setting_items_check(uint8_t cursor, uint8_t cursor_prv, uint8_t tab_cont)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ITEMS_1:
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ITEMS_2:
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ITEMS_3:
|
case ITEMS_3:
|
||||||
{
|
{
|
||||||
|
switch (con)
|
||||||
}
|
{
|
||||||
|
case 0:
|
||||||
|
{}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
//操作选项卡
|
|
||||||
switch (cursor) //点亮当前选中目标
|
|
||||||
{
|
|
||||||
case ITEMS_0:
|
|
||||||
{
|
|
||||||
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s0, lv_color_hex(0xcbefff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
|
||||||
|
|
||||||
lv_obj_clear_flag(guider_ui.screen_setting_label_01, LV_OBJ_FLAG_HIDDEN);
|
|
||||||
lv_obj_clear_flag(guider_ui.screen_setting_label_03, LV_OBJ_FLAG_HIDDEN);
|
|
||||||
lv_obj_clear_flag(guider_ui.screen_setting_label_05, LV_OBJ_FLAG_HIDDEN);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ITEMS_1:
|
|
||||||
{
|
|
||||||
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s1, lv_color_hex(0xcbefff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
|
||||||
|
|
||||||
lv_obj_add_flag(guider_ui.screen_setting_label_01, LV_OBJ_FLAG_HIDDEN);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ITEMS_2:
|
|
||||||
{
|
|
||||||
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s2, lv_color_hex(0xcbefff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
|
||||||
|
|
||||||
lv_obj_add_flag(guider_ui.screen_setting_label_03, LV_OBJ_FLAG_HIDDEN);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ITEMS_3:
|
|
||||||
{
|
|
||||||
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s3, lv_color_hex(0xcbefff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
|
||||||
|
|
||||||
lv_obj_add_flag(guider_ui.screen_setting_label_05, LV_OBJ_FLAG_HIDDEN);
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (cursor_prv) //熄灭前一时刻的目标
|
|
||||||
{
|
|
||||||
case ITEMS_0:
|
|
||||||
{
|
|
||||||
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s0, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ITEMS_1:
|
|
||||||
{
|
|
||||||
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s1, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ITEMS_2:
|
|
||||||
{
|
|
||||||
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s2, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ITEMS_3:
|
|
||||||
{
|
|
||||||
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s3, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void setting_update(uint8_t ite, uint8_t con)
|
void setting_update(uint8_t ite, uint8_t con)
|
||||||
|
@ -2639,6 +2762,99 @@ void setting_update(uint8_t ite, uint8_t con)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//将游标的横纵坐标转换成游标值,x[0,5], y[0,5], cursor[0,35]
|
||||||
|
uint8_t contents_xy2cursor(uint8_t px, uint8_t py)
|
||||||
|
{
|
||||||
|
uint8_t result = 0;
|
||||||
|
|
||||||
|
result = ( px + 1 )*( py + 1 ) - 1;
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
//设置内容的底色
|
||||||
|
void set_contents_color(uint8_t cursor, uint32_t color)
|
||||||
|
{
|
||||||
|
switch (cursor)
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
{
|
||||||
|
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_00, lv_color_hex(color), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 1:
|
||||||
|
{
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_01, lv_color_hex(color), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 2:
|
||||||
|
{
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_02, lv_color_hex(color), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 3:
|
||||||
|
{
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_03, lv_color_hex(color), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 4:
|
||||||
|
{
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_04, lv_color_hex(color), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 5:
|
||||||
|
{
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_05, lv_color_hex(color), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 6:
|
||||||
|
{
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_10, lv_color_hex(color), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 7:
|
||||||
|
{
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_11, lv_color_hex(color), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 8:
|
||||||
|
{
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_12, lv_color_hex(color), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 9:
|
||||||
|
{
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_13, lv_color_hex(color), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 10:
|
||||||
|
{
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_14, lv_color_hex(color), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 11:
|
||||||
|
{
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_15, lv_color_hex(color), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void scr_main_recover(void)
|
void scr_main_recover(void)
|
||||||
{
|
{
|
||||||
// 运行时间 和 电池电量 在主界面的函数中已存在,无需额外恢复
|
// 运行时间 和 电池电量 在主界面的函数中已存在,无需额外恢复
|
||||||
|
|
|
@ -1,3 +1,11 @@
|
||||||
|
/*
|
||||||
|
* @Author: wujunchao wujunchao@wuxismart.com
|
||||||
|
* @Date: 2024-12-27 10:42:51
|
||||||
|
* @LastEditors: wujunchao wujunchao@wuxismart.com
|
||||||
|
* @LastEditTime: 2025-03-13 16:02:54
|
||||||
|
* @FilePath: \signal_generator\Core\Inc\tim.h
|
||||||
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
||||||
|
*/
|
||||||
/* USER CODE BEGIN Header */
|
/* USER CODE BEGIN Header */
|
||||||
/**
|
/**
|
||||||
******************************************************************************
|
******************************************************************************
|
||||||
|
|
|
@ -75,6 +75,30 @@ typedef struct
|
||||||
lv_obj_t *screen_setting_label_02;
|
lv_obj_t *screen_setting_label_02;
|
||||||
lv_obj_t *screen_setting_label_01;
|
lv_obj_t *screen_setting_label_01;
|
||||||
lv_obj_t *screen_setting_label_00;
|
lv_obj_t *screen_setting_label_00;
|
||||||
|
lv_obj_t *screen_setting_label_20;
|
||||||
|
lv_obj_t *screen_setting_label_21;
|
||||||
|
lv_obj_t *screen_setting_label_22;
|
||||||
|
lv_obj_t *screen_setting_label_23;
|
||||||
|
lv_obj_t *screen_setting_label_24;
|
||||||
|
lv_obj_t *screen_setting_label_25;
|
||||||
|
lv_obj_t *screen_setting_label_30;
|
||||||
|
lv_obj_t *screen_setting_label_40;
|
||||||
|
lv_obj_t *screen_setting_label_50;
|
||||||
|
lv_obj_t *screen_setting_label_31;
|
||||||
|
lv_obj_t *screen_setting_label_41;
|
||||||
|
lv_obj_t *screen_setting_label_51;
|
||||||
|
lv_obj_t *screen_setting_label_32;
|
||||||
|
lv_obj_t *screen_setting_label_42;
|
||||||
|
lv_obj_t *screen_setting_label_52;
|
||||||
|
lv_obj_t *screen_setting_label_33;
|
||||||
|
lv_obj_t *screen_setting_label_43;
|
||||||
|
lv_obj_t *screen_setting_label_53;
|
||||||
|
lv_obj_t *screen_setting_label_34;
|
||||||
|
lv_obj_t *screen_setting_label_44;
|
||||||
|
lv_obj_t *screen_setting_label_54;
|
||||||
|
lv_obj_t *screen_setting_label_35;
|
||||||
|
lv_obj_t *screen_setting_label_45;
|
||||||
|
lv_obj_t *screen_setting_label_55;
|
||||||
lv_obj_t *screen_hidden;
|
lv_obj_t *screen_hidden;
|
||||||
bool screen_hidden_del;
|
bool screen_hidden_del;
|
||||||
lv_obj_t *screen_hidden_spangroup_1;
|
lv_obj_t *screen_hidden_spangroup_1;
|
||||||
|
@ -291,7 +315,7 @@ LV_IMG_DECLARE(screen_main_ani_out_0W_MOK_null);
|
||||||
LV_IMG_DECLARE(screen_main_ani_out_signW_MOK_null);
|
LV_IMG_DECLARE(screen_main_ani_out_signW_MOK_null);
|
||||||
LV_IMG_DECLARE(screen_main_ani_out_signW_MOK_minus);
|
LV_IMG_DECLARE(screen_main_ani_out_signW_MOK_minus);
|
||||||
LV_IMG_DECLARE(screen_main_ani_out_signW_MOK_plus);
|
LV_IMG_DECLARE(screen_main_ani_out_signW_MOK_plus);
|
||||||
LV_IMG_DECLARE(_triangle_alpha_15x8);
|
LV_IMG_DECLARE(_triangle_alpha_14x8);
|
||||||
|
|
||||||
LV_FONT_DECLARE(lv_font_SourceHanSerifSC_Regular_12)
|
LV_FONT_DECLARE(lv_font_SourceHanSerifSC_Regular_12)
|
||||||
LV_FONT_DECLARE(lv_font_SourceHanSerifSC_Regular_16)
|
LV_FONT_DECLARE(lv_font_SourceHanSerifSC_Regular_16)
|
||||||
|
|
|
@ -816,6 +816,20 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
|
||||||
0xc0, 0xad, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0,
|
0xc0, 0xad, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
0x0, 0x0,
|
0x0, 0x0,
|
||||||
|
|
||||||
|
/* U+7387 "率" */
|
||||||
|
0x0, 0x0, 0x1, 0x70, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x0, 0x96, 0x0, 0x9, 0x20, 0x16, 0x66,
|
||||||
|
0x67, 0xe7, 0x66, 0x67, 0x40, 0x2, 0x80, 0xa,
|
||||||
|
0x50, 0x60, 0x4c, 0x10, 0x0, 0x78, 0xab, 0x7b,
|
||||||
|
0x83, 0x81, 0x0, 0x0, 0x4, 0x51, 0xa6, 0x3,
|
||||||
|
0x20, 0x0, 0x0, 0x68, 0x38, 0x21, 0xb2, 0x7b,
|
||||||
|
0x20, 0x2d, 0x60, 0xeb, 0x96, 0x79, 0x5, 0xc0,
|
||||||
|
0x2, 0x0, 0x0, 0xa4, 0x1, 0x2, 0x10, 0x36,
|
||||||
|
0x66, 0x66, 0xd8, 0x66, 0x6b, 0xb0, 0x0, 0x0,
|
||||||
|
0x0, 0xb3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0xb3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa2,
|
||||||
|
0x0, 0x0, 0x0,
|
||||||
|
|
||||||
/* U+7535 "电" */
|
/* U+7535 "电" */
|
||||||
0x0, 0x0, 0xb3, 0x0, 0x0, 0x0, 0x0, 0x0,
|
0x0, 0x0, 0xb3, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
0xd0, 0x0, 0x0, 0x0, 0xa6, 0x66, 0xe7, 0x66,
|
0xd0, 0x0, 0x0, 0x0, 0xa6, 0x66, 0xe7, 0x66,
|
||||||
|
@ -885,6 +899,19 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
|
||||||
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
0xd0, 0x0, 0x0,
|
0xd0, 0x0, 0x0,
|
||||||
|
|
||||||
|
/* U+963B "阻" */
|
||||||
|
0x20, 0x4, 0x0, 0x0, 0x0, 0x10, 0xe, 0x67,
|
||||||
|
0xf3, 0xc6, 0x66, 0x6f, 0x20, 0xe0, 0x69, 0xd,
|
||||||
|
0x0, 0x0, 0xe0, 0xe, 0xa, 0x0, 0xd0, 0x0,
|
||||||
|
0xe, 0x0, 0xe2, 0x40, 0xd, 0x66, 0x66, 0xe0,
|
||||||
|
0xe, 0x8, 0x0, 0xd0, 0x0, 0xe, 0x0, 0xe0,
|
||||||
|
0x48, 0xd, 0x0, 0x0, 0xe0, 0xe, 0x0, 0xe0,
|
||||||
|
0xd0, 0x0, 0xe, 0x0, 0xe0, 0x1e, 0xd, 0x66,
|
||||||
|
0x66, 0xe0, 0xe, 0x3f, 0x90, 0xd0, 0x0, 0xe,
|
||||||
|
0x0, 0xe0, 0x20, 0xd, 0x0, 0x0, 0xe0, 0xe,
|
||||||
|
0x0, 0x0, 0xd0, 0x0, 0xe, 0x40, 0xc0, 0x6,
|
||||||
|
0x69, 0x66, 0x66, 0x99, 0x40,
|
||||||
|
|
||||||
/* U+9650 "限" */
|
/* U+9650 "限" */
|
||||||
0x20, 0x3, 0x2, 0x0, 0x0, 0x30, 0xd, 0x67,
|
0x20, 0x3, 0x2, 0x0, 0x0, 0x30, 0xd, 0x67,
|
||||||
0xf5, 0xe6, 0x66, 0x6f, 0x20, 0xd0, 0x5a, 0x1c,
|
0xf5, 0xe6, 0x66, 0x6f, 0x20, 0xd0, 0x5a, 0x1c,
|
||||||
|
@ -915,6 +942,22 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
|
||||||
0xb3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
0xb3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
0x0,
|
0x0,
|
||||||
|
|
||||||
|
/* U+9891 "频" */
|
||||||
|
0x0, 0x1, 0x60, 0x0, 0x0, 0x0, 0x30, 0x0,
|
||||||
|
0x6, 0x39, 0x1, 0x66, 0x88, 0x6b, 0x50, 0x0,
|
||||||
|
0xc2, 0xca, 0x90, 0xa, 0x30, 0x0, 0x0, 0xc,
|
||||||
|
0x29, 0x0, 0x52, 0xb2, 0x27, 0x0, 0x0, 0xc2,
|
||||||
|
0x91, 0x7b, 0x54, 0x44, 0xe1, 0x1, 0x66, 0x77,
|
||||||
|
0x66, 0xc1, 0x3b, 0xd, 0x0, 0x0, 0x13, 0xa0,
|
||||||
|
0xb, 0x13, 0x90, 0xd0, 0x0, 0x2d, 0x48, 0x4b,
|
||||||
|
0xc1, 0x48, 0xd, 0x0, 0x8, 0x43, 0x8a, 0x4b,
|
||||||
|
0x16, 0x60, 0xd0, 0x1, 0x70, 0x39, 0xc0, 0xb1,
|
||||||
|
0xa2, 0xc, 0x0, 0x0, 0x0, 0xb2, 0x2, 0x1b,
|
||||||
|
0x57, 0x0, 0x0, 0x0, 0x94, 0x0, 0x1a, 0x20,
|
||||||
|
0x8c, 0x0, 0x4, 0x71, 0x1, 0x56, 0x0, 0x0,
|
||||||
|
0xb2, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0x0,
|
||||||
|
|
||||||
/* U+F001 "" */
|
/* U+F001 "" */
|
||||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
0x0, 0x0, 0x0, 0x0, 0x2, 0x7b, 0xfb, 0x0,
|
0x0, 0x0, 0x0, 0x0, 0x2, 0x7b, 0xfb, 0x0,
|
||||||
|
@ -1835,73 +1878,76 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = {
|
||||||
{.bitmap_index = 4073, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 4073, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 4164, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 4164, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 4262, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 4262, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 4360, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 2, .ofs_y = -1},
|
{.bitmap_index = 4360, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 4438, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 4451, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 2, .ofs_y = -1},
|
||||||
{.bitmap_index = 4529, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 4529, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 4620, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 4620, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 4718, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 4711, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 4809, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2},
|
{.bitmap_index = 4809, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 4900, .adv_w = 224, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 4900, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -1},
|
||||||
{.bitmap_index = 5005, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
{.bitmap_index = 4985, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2},
|
||||||
{.bitmap_index = 5118, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 5076, .adv_w = 224, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 5195, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 5181, .adv_w = 224, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 5286, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 5286, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
||||||
{.bitmap_index = 5363, .adv_w = 154, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 5399, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 5418, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 5476, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 5523, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 5567, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 5628, .adv_w = 252, .box_w = 16, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 5644, .adv_w = 154, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 5732, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 5699, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 5837, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 5804, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 5925, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 5909, .adv_w = 252, .box_w = 16, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 6030, .adv_w = 112, .box_w = 7, .box_h = 12, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 6013, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 6072, .adv_w = 168, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 6118, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 6138, .adv_w = 252, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 6206, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 6250, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 6311, .adv_w = 112, .box_w = 7, .box_h = 12, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 6327, .adv_w = 154, .box_w = 10, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 6353, .adv_w = 168, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 6402, .adv_w = 196, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = -2},
|
{.bitmap_index = 6419, .adv_w = 252, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 6472, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 6531, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 6570, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 6608, .adv_w = 154, .box_w = 10, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 6655, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 6683, .adv_w = 196, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = -2},
|
||||||
{.bitmap_index = 6740, .adv_w = 196, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = -2},
|
{.bitmap_index = 6753, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 6810, .adv_w = 196, .box_w = 14, .box_h = 13, .ofs_x = -1, .ofs_y = -1},
|
{.bitmap_index = 6851, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 6901, .adv_w = 140, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 6936, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 6960, .adv_w = 140, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 7021, .adv_w = 196, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = -2},
|
||||||
{.bitmap_index = 7019, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 7091, .adv_w = 196, .box_w = 14, .box_h = 13, .ofs_x = -1, .ofs_y = -1},
|
||||||
{.bitmap_index = 7104, .adv_w = 196, .box_w = 13, .box_h = 4, .ofs_x = 0, .ofs_y = 3},
|
{.bitmap_index = 7182, .adv_w = 140, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 7130, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 7241, .adv_w = 140, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 7218, .adv_w = 280, .box_w = 18, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 7300, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 7353, .adv_w = 252, .box_w = 17, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
{.bitmap_index = 7385, .adv_w = 196, .box_w = 13, .box_h = 4, .ofs_x = 0, .ofs_y = 3},
|
||||||
{.bitmap_index = 7481, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 7411, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 7572, .adv_w = 196, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 1},
|
{.bitmap_index = 7499, .adv_w = 280, .box_w = 18, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 7624, .adv_w = 196, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 1},
|
{.bitmap_index = 7634, .adv_w = 252, .box_w = 17, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
||||||
{.bitmap_index = 7676, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 7762, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 7775, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 7853, .adv_w = 196, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 1},
|
||||||
{.bitmap_index = 7852, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 7905, .adv_w = 196, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 1},
|
||||||
{.bitmap_index = 7957, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
{.bitmap_index = 7957, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 8070, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 8056, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 8155, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 8133, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 8253, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 8238, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
||||||
{.bitmap_index = 8338, .adv_w = 196, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 8351, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 8416, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 8436, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 8493, .adv_w = 140, .box_w = 10, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
{.bitmap_index = 8534, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 8568, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 8619, .adv_w = 196, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 8666, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 8697, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 8764, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 8774, .adv_w = 140, .box_w = 10, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
||||||
{.bitmap_index = 8852, .adv_w = 224, .box_w = 16, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
{.bitmap_index = 8849, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 8972, .adv_w = 168, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 8947, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 9055, .adv_w = 280, .box_w = 18, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 9045, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 9172, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 9133, .adv_w = 224, .box_w = 16, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
||||||
{.bitmap_index = 9262, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 9253, .adv_w = 168, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 9352, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 9336, .adv_w = 280, .box_w = 18, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 9442, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 9453, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 9532, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 9543, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 9622, .adv_w = 280, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 9633, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 9730, .adv_w = 196, .box_w = 12, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 9723, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 9820, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 9813, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 9918, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
{.bitmap_index = 9903, .adv_w = 280, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 10031, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 10011, .adv_w = 196, .box_w = 12, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 10130, .adv_w = 168, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 10101, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 10213, .adv_w = 225, .box_w = 15, .box_h = 10, .ofs_x = 0, .ofs_y = 0}
|
{.bitmap_index = 10199, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
||||||
|
{.bitmap_index = 10312, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
||||||
|
{.bitmap_index = 10411, .adv_w = 168, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
|
{.bitmap_index = 10494, .adv_w = 225, .box_w = 15, .box_h = 10, .ofs_x = 0, .ofs_y = 0}
|
||||||
};
|
};
|
||||||
|
|
||||||
/*---------------------
|
/*---------------------
|
||||||
|
@ -1909,16 +1955,16 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = {
|
||||||
*--------------------*/
|
*--------------------*/
|
||||||
|
|
||||||
static const uint16_t unicode_list_2[] = {
|
static const uint16_t unicode_list_2[] = {
|
||||||
0x0, 0x1d5a, 0x4a61, 0x4a62, 0x4fe2, 0x6998, 0x718c, 0x7b1d,
|
0x0, 0x1d5a, 0x4a61, 0x4a62, 0x4fe2, 0x6998, 0x6fde, 0x718c,
|
||||||
0x7bc5, 0x8815, 0x883d, 0x92a7, 0x94d0, 0xec58, 0xec5f, 0xec62,
|
0x7b1d, 0x7bc5, 0x8815, 0x883d, 0x9292, 0x92a7, 0x94d0, 0x94e8,
|
||||||
0xec63, 0xec64, 0xec68, 0xec6a, 0xec6c, 0xec70, 0xec73, 0xec78,
|
0xec58, 0xec5f, 0xec62, 0xec63, 0xec64, 0xec68, 0xec6a, 0xec6c,
|
||||||
0xec7d, 0xec7e, 0xec7f, 0xec95, 0xec9a, 0xec9f, 0xeca2, 0xeca3,
|
0xec70, 0xec73, 0xec78, 0xec7d, 0xec7e, 0xec7f, 0xec95, 0xec9a,
|
||||||
0xeca4, 0xeca8, 0xeca9, 0xecaa, 0xecab, 0xecbe, 0xecbf, 0xecc5,
|
0xec9f, 0xeca2, 0xeca3, 0xeca4, 0xeca8, 0xeca9, 0xecaa, 0xecab,
|
||||||
0xecc7, 0xecc8, 0xeccb, 0xecce, 0xeccf, 0xecd0, 0xecd2, 0xecea,
|
0xecbe, 0xecbf, 0xecc5, 0xecc7, 0xecc8, 0xeccb, 0xecce, 0xeccf,
|
||||||
0xecec, 0xed1b, 0xed1c, 0xed1e, 0xed20, 0xed37, 0xed3e, 0xed41,
|
0xecd0, 0xecd2, 0xecea, 0xecec, 0xed1b, 0xed1c, 0xed1e, 0xed20,
|
||||||
0xed4a, 0xed73, 0xed7b, 0xedb2, 0xee42, 0xee97, 0xee98, 0xee99,
|
0xed37, 0xed3e, 0xed41, 0xed4a, 0xed73, 0xed7b, 0xedb2, 0xee42,
|
||||||
0xee9a, 0xee9b, 0xeede, 0xeeea, 0xef44, 0xef5b, 0xf1b1, 0xf419,
|
0xee97, 0xee98, 0xee99, 0xee9a, 0xee9b, 0xeede, 0xeeea, 0xef44,
|
||||||
0xf4f9
|
0xef5b, 0xf1b1, 0xf419, 0xf4f9
|
||||||
};
|
};
|
||||||
|
|
||||||
/*Collect the unicode lists and glyph_id offsets*/
|
/*Collect the unicode lists and glyph_id offsets*/
|
||||||
|
@ -1934,7 +1980,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] =
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
.range_start = 937, .range_length = 62714, .glyph_id_start = 95,
|
.range_start = 937, .range_length = 62714, .glyph_id_start = 95,
|
||||||
.unicode_list = unicode_list_2, .glyph_id_ofs_list = NULL, .list_length = 73, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY
|
.unicode_list = unicode_list_2, .glyph_id_ofs_list = NULL, .list_length = 76, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1966,7 +2012,8 @@ static const uint8_t kern_left_class_mapping[] =
|
||||||
0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 0, 0, 0, 0, 0, 0, 0
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
|
0, 0, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
/*Map glyph_ids to kern right classes*/
|
/*Map glyph_ids to kern right classes*/
|
||||||
|
@ -1992,7 +2039,8 @@ static const uint8_t kern_right_class_mapping[] =
|
||||||
0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 0, 0, 0, 0, 0, 0, 0
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
|
0, 0, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
/*Kern values between classes*/
|
/*Kern values between classes*/
|
||||||
|
|
|
@ -0,0 +1,71 @@
|
||||||
|
#if defined(LV_LVGL_H_INCLUDE_SIMPLE)
|
||||||
|
#include "lvgl.h"
|
||||||
|
#else
|
||||||
|
#include "lvgl/lvgl.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef LV_ATTRIBUTE_MEM_ALIGN
|
||||||
|
#define LV_ATTRIBUTE_MEM_ALIGN
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef LV_ATTRIBUTE_IMG__TRIANGLE_ALPHA_14X8
|
||||||
|
#define LV_ATTRIBUTE_IMG__TRIANGLE_ALPHA_14X8
|
||||||
|
#endif
|
||||||
|
|
||||||
|
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG__TRIANGLE_ALPHA_14X8 uint8_t _triangle_alpha_14x8_map[] = {
|
||||||
|
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
||||||
|
/*Pixel format: Alpha 8 bit, Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x25, 0xff, 0x25, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x49, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x45, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0x49, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x49, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0x49, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x49, 0xff, 0xff, 0xff,
|
||||||
|
0x6e, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x6e, 0xff,
|
||||||
|
#endif
|
||||||
|
#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP == 0
|
||||||
|
/*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit*/
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x76, 0xb5, 0xff, 0x76, 0xb5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9b, 0xd6, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x9b, 0xd6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1c, 0xe7, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x1c, 0xe7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1c, 0xe7, 0xff, 0x67, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x1c, 0xe7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5d, 0xef, 0xff, 0x88, 0x31, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x88, 0x31, 0xff, 0x5d, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xe9, 0x39, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0xc9, 0x39, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0xff, 0x2a, 0x4a, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x0a, 0x42, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0x2e, 0x6b, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x2e, 0x6b, 0xff,
|
||||||
|
#endif
|
||||||
|
#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP != 0
|
||||||
|
/*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit BUT the 2 color bytes are swapped*/
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb5, 0x76, 0xff, 0xb5, 0x76, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd6, 0x9b, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0xd6, 0x9b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0x1c, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0xe7, 0x1c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0x1c, 0xff, 0x29, 0x67, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0xe7, 0x1c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0x5d, 0xff, 0x31, 0x88, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x31, 0x88, 0xff, 0xef, 0x5d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, 0x39, 0xe9, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x39, 0xc9, 0xff, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0xff, 0x4a, 0x2a, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x42, 0x0a, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0x6b, 0x2e, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x6b, 0x2e, 0xff,
|
||||||
|
#endif
|
||||||
|
#if LV_COLOR_DEPTH == 32
|
||||||
|
/*Pixel format: Alpha 8 bit, Red: 8 bit, Green: 8 bit, Blue: 8 bit*/
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb2, 0xac, 0xad, 0xff, 0xb2, 0xac, 0xac, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd5, 0xd1, 0xd2, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0xd4, 0xd1, 0xd1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0xe0, 0xe0, 0xff, 0x37, 0x27, 0x28, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x37, 0x27, 0x28, 0xff, 0xe2, 0xdf, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xe0, 0xe0, 0xff, 0x3a, 0x2a, 0x2b, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x39, 0x29, 0x2a, 0xff, 0xe2, 0xe0, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, 0xe6, 0xe6, 0xff, 0x3f, 0x30, 0x31, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x3f, 0x2f, 0x30, 0xff, 0xe8, 0xe6, 0xe6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0xf6, 0xf6, 0xf6, 0xff, 0x49, 0x3a, 0x3b, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x45, 0x37, 0x38, 0xff, 0xf6, 0xf5, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0xff, 0xff, 0xff, 0xff, 0x51, 0x43, 0x44, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x4f, 0x40, 0x41, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
0x70, 0x64, 0x65, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x6e, 0x63, 0x64, 0xff,
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
const lv_img_dsc_t _triangle_alpha_14x8 = {
|
||||||
|
.header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA,
|
||||||
|
.header.always_zero = 0,
|
||||||
|
.header.reserved = 0,
|
||||||
|
.header.w = 14,
|
||||||
|
.header.h = 8,
|
||||||
|
.data_size = 112 * LV_IMG_PX_SIZE_ALPHA_BYTE,
|
||||||
|
.data = _triangle_alpha_14x8_map,
|
||||||
|
};
|
|
@ -1,71 +0,0 @@
|
||||||
#if defined(LV_LVGL_H_INCLUDE_SIMPLE)
|
|
||||||
#include "lvgl.h"
|
|
||||||
#else
|
|
||||||
#include "lvgl/lvgl.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef LV_ATTRIBUTE_MEM_ALIGN
|
|
||||||
#define LV_ATTRIBUTE_MEM_ALIGN
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef LV_ATTRIBUTE_IMG__TRIANGLE_ALPHA_15X8
|
|
||||||
#define LV_ATTRIBUTE_IMG__TRIANGLE_ALPHA_15X8
|
|
||||||
#endif
|
|
||||||
|
|
||||||
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG__TRIANGLE_ALPHA_15X8 uint8_t _triangle_alpha_15x8_map[] = {
|
|
||||||
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
|
||||||
/*Pixel format: Alpha 8 bit, Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x25, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x49, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x49, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x49, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x49, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x49, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x49, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0x49, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x49, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0x49, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x49, 0xff, 0xff, 0xff,
|
|
||||||
0x6e, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x25, 0xff, 0x6e, 0xff,
|
|
||||||
#endif
|
|
||||||
#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP == 0
|
|
||||||
/*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit*/
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9e, 0xf7, 0xff, 0x68, 0x31, 0xff, 0x9e, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xff, 0xff, 0x68, 0x31, 0xff, 0x47, 0x29, 0xff, 0x67, 0x29, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0a, 0x42, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x0a, 0x42, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8b, 0x52, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x6b, 0x52, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6b, 0x52, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x6b, 0x52, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x2a, 0x4a, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x0a, 0x42, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0xff, 0x6b, 0x52, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x4b, 0x4a, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0x6f, 0x6b, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x47, 0x29, 0xff, 0x4f, 0x6b, 0xff,
|
|
||||||
#endif
|
|
||||||
#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP != 0
|
|
||||||
/*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit BUT the 2 color bytes are swapped*/
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x9e, 0xff, 0x31, 0x68, 0xff, 0xf7, 0x9e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xff, 0x31, 0x68, 0xff, 0x29, 0x47, 0xff, 0x29, 0x67, 0xff, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x42, 0x0a, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x42, 0x0a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x52, 0x8b, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x52, 0x6b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x52, 0x6b, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x52, 0x6b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4a, 0x2a, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x42, 0x0a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0xff, 0x52, 0x6b, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x4a, 0x4b, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0x6b, 0x6f, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x29, 0x47, 0xff, 0x6b, 0x4f, 0xff,
|
|
||||||
#endif
|
|
||||||
#if LV_COLOR_DEPTH == 32
|
|
||||||
/*Pixel format: Alpha 8 bit, Red: 8 bit, Green: 8 bit, Blue: 8 bit*/
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xf0, 0xf0, 0xff, 0x3d, 0x2d, 0x2e, 0xff, 0xf1, 0xef, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0xf4, 0xf4, 0xff, 0x3c, 0x2c, 0x2d, 0xff, 0x36, 0x26, 0x27, 0xff, 0x39, 0x2a, 0x2b, 0xff, 0xf5, 0xf4, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4e, 0x40, 0x40, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x4d, 0x3f, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5b, 0x4e, 0x4f, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x5a, 0x4d, 0x4e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5a, 0x4d, 0x4e, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x59, 0x4c, 0x4d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0x52, 0x44, 0x45, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x4d, 0x3e, 0x40, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0x5a, 0x4c, 0x4d, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x56, 0x49, 0x49, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
||||||
0x76, 0x6b, 0x6b, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x36, 0x26, 0x27, 0xff, 0x74, 0x69, 0x6a, 0xff,
|
|
||||||
#endif
|
|
||||||
};
|
|
||||||
|
|
||||||
const lv_img_dsc_t _triangle_alpha_15x8 = {
|
|
||||||
.header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA,
|
|
||||||
.header.always_zero = 0,
|
|
||||||
.header.reserved = 0,
|
|
||||||
.header.w = 15,
|
|
||||||
.header.h = 8,
|
|
||||||
.data_size = 120 * LV_IMG_PX_SIZE_ALPHA_BYTE,
|
|
||||||
.data = _triangle_alpha_15x8_map,
|
|
||||||
};
|
|
|
@ -9,11 +9,11 @@
|
||||||
#define LV_ATTRIBUTE_MEM_ALIGN
|
#define LV_ATTRIBUTE_MEM_ALIGN
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_0
|
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_0
|
||||||
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_0
|
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_0 uint8_t screen_main_ani_out_6W_MOK_0_map[] = {
|
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_0 uint8_t screen_main_ani_in_6W_MOK_0_map[] = {
|
||||||
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
||||||
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
@ -148,12 +148,12 @@ const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MA
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
const lv_img_dsc_t screen_main_ani_out_6W_MOK_0 = {
|
const lv_img_dsc_t screen_main_ani_in_6W_MOK_0 = {
|
||||||
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
||||||
.header.always_zero = 0,
|
.header.always_zero = 0,
|
||||||
.header.reserved = 0,
|
.header.reserved = 0,
|
||||||
.header.w = 20,
|
.header.w = 20,
|
||||||
.header.h = 30,
|
.header.h = 30,
|
||||||
.data_size = 600 * LV_COLOR_SIZE / 8,
|
.data_size = 600 * LV_COLOR_SIZE / 8,
|
||||||
.data = screen_main_ani_out_6W_MOK_0_map,
|
.data = screen_main_ani_in_6W_MOK_0_map,
|
||||||
};
|
};
|
|
@ -9,11 +9,11 @@
|
||||||
#define LV_ATTRIBUTE_MEM_ALIGN
|
#define LV_ATTRIBUTE_MEM_ALIGN
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_1
|
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_1
|
||||||
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_1
|
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_1 uint8_t screen_main_ani_out_6W_MOK_1_map[] = {
|
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_1 uint8_t screen_main_ani_in_6W_MOK_1_map[] = {
|
||||||
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
||||||
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
@ -148,12 +148,12 @@ const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MA
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
const lv_img_dsc_t screen_main_ani_out_6W_MOK_1 = {
|
const lv_img_dsc_t screen_main_ani_in_6W_MOK_1 = {
|
||||||
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
||||||
.header.always_zero = 0,
|
.header.always_zero = 0,
|
||||||
.header.reserved = 0,
|
.header.reserved = 0,
|
||||||
.header.w = 20,
|
.header.w = 20,
|
||||||
.header.h = 30,
|
.header.h = 30,
|
||||||
.data_size = 600 * LV_COLOR_SIZE / 8,
|
.data_size = 600 * LV_COLOR_SIZE / 8,
|
||||||
.data = screen_main_ani_out_6W_MOK_1_map,
|
.data = screen_main_ani_in_6W_MOK_1_map,
|
||||||
};
|
};
|
|
@ -9,11 +9,11 @@
|
||||||
#define LV_ATTRIBUTE_MEM_ALIGN
|
#define LV_ATTRIBUTE_MEM_ALIGN
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_2
|
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_2
|
||||||
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_2
|
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_2 uint8_t screen_main_ani_out_6W_MOK_2_map[] = {
|
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_2 uint8_t screen_main_ani_in_6W_MOK_2_map[] = {
|
||||||
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
||||||
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
@ -148,12 +148,12 @@ const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MA
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
const lv_img_dsc_t screen_main_ani_out_6W_MOK_2 = {
|
const lv_img_dsc_t screen_main_ani_in_6W_MOK_2 = {
|
||||||
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
||||||
.header.always_zero = 0,
|
.header.always_zero = 0,
|
||||||
.header.reserved = 0,
|
.header.reserved = 0,
|
||||||
.header.w = 20,
|
.header.w = 20,
|
||||||
.header.h = 30,
|
.header.h = 30,
|
||||||
.data_size = 600 * LV_COLOR_SIZE / 8,
|
.data_size = 600 * LV_COLOR_SIZE / 8,
|
||||||
.data = screen_main_ani_out_6W_MOK_2_map,
|
.data = screen_main_ani_in_6W_MOK_2_map,
|
||||||
};
|
};
|
|
@ -9,11 +9,11 @@
|
||||||
#define LV_ATTRIBUTE_MEM_ALIGN
|
#define LV_ATTRIBUTE_MEM_ALIGN
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_3
|
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_3
|
||||||
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_3
|
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_3
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_3 uint8_t screen_main_ani_out_6W_MOK_3_map[] = {
|
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_3 uint8_t screen_main_ani_in_6W_MOK_3_map[] = {
|
||||||
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
||||||
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
@ -148,12 +148,12 @@ const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MA
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
const lv_img_dsc_t screen_main_ani_out_6W_MOK_3 = {
|
const lv_img_dsc_t screen_main_ani_in_6W_MOK_3 = {
|
||||||
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
||||||
.header.always_zero = 0,
|
.header.always_zero = 0,
|
||||||
.header.reserved = 0,
|
.header.reserved = 0,
|
||||||
.header.w = 20,
|
.header.w = 20,
|
||||||
.header.h = 30,
|
.header.h = 30,
|
||||||
.data_size = 600 * LV_COLOR_SIZE / 8,
|
.data_size = 600 * LV_COLOR_SIZE / 8,
|
||||||
.data = screen_main_ani_out_6W_MOK_3_map,
|
.data = screen_main_ani_in_6W_MOK_3_map,
|
||||||
};
|
};
|
|
@ -9,11 +9,11 @@
|
||||||
#define LV_ATTRIBUTE_MEM_ALIGN
|
#define LV_ATTRIBUTE_MEM_ALIGN
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_4
|
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_4
|
||||||
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_4
|
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_4
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_4 uint8_t screen_main_ani_out_6W_MOK_4_map[] = {
|
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_4 uint8_t screen_main_ani_in_6W_MOK_4_map[] = {
|
||||||
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
||||||
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
@ -148,12 +148,12 @@ const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MA
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
const lv_img_dsc_t screen_main_ani_out_6W_MOK_4 = {
|
const lv_img_dsc_t screen_main_ani_in_6W_MOK_4 = {
|
||||||
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
||||||
.header.always_zero = 0,
|
.header.always_zero = 0,
|
||||||
.header.reserved = 0,
|
.header.reserved = 0,
|
||||||
.header.w = 20,
|
.header.w = 20,
|
||||||
.header.h = 30,
|
.header.h = 30,
|
||||||
.data_size = 600 * LV_COLOR_SIZE / 8,
|
.data_size = 600 * LV_COLOR_SIZE / 8,
|
||||||
.data = screen_main_ani_out_6W_MOK_4_map,
|
.data = screen_main_ani_in_6W_MOK_4_map,
|
||||||
};
|
};
|
|
@ -9,11 +9,11 @@
|
||||||
#define LV_ATTRIBUTE_MEM_ALIGN
|
#define LV_ATTRIBUTE_MEM_ALIGN
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_5
|
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_5
|
||||||
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_5
|
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_5
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_5 uint8_t screen_main_ani_out_6W_MOK_5_map[] = {
|
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_5 uint8_t screen_main_ani_in_6W_MOK_5_map[] = {
|
||||||
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
||||||
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
@ -148,12 +148,12 @@ const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MA
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
const lv_img_dsc_t screen_main_ani_out_6W_MOK_5 = {
|
const lv_img_dsc_t screen_main_ani_in_6W_MOK_5 = {
|
||||||
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
||||||
.header.always_zero = 0,
|
.header.always_zero = 0,
|
||||||
.header.reserved = 0,
|
.header.reserved = 0,
|
||||||
.header.w = 20,
|
.header.w = 20,
|
||||||
.header.h = 30,
|
.header.h = 30,
|
||||||
.data_size = 600 * LV_COLOR_SIZE / 8,
|
.data_size = 600 * LV_COLOR_SIZE / 8,
|
||||||
.data = screen_main_ani_out_6W_MOK_5_map,
|
.data = screen_main_ani_in_6W_MOK_5_map,
|
||||||
};
|
};
|
|
@ -9,11 +9,11 @@
|
||||||
#define LV_ATTRIBUTE_MEM_ALIGN
|
#define LV_ATTRIBUTE_MEM_ALIGN
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_6
|
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_6
|
||||||
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_6
|
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_6
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_6 uint8_t screen_main_ani_out_6W_MOK_6_map[] = {
|
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_6 uint8_t screen_main_ani_in_6W_MOK_6_map[] = {
|
||||||
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
||||||
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
@ -148,12 +148,12 @@ const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MA
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
const lv_img_dsc_t screen_main_ani_out_6W_MOK_6 = {
|
const lv_img_dsc_t screen_main_ani_in_6W_MOK_6 = {
|
||||||
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
||||||
.header.always_zero = 0,
|
.header.always_zero = 0,
|
||||||
.header.reserved = 0,
|
.header.reserved = 0,
|
||||||
.header.w = 20,
|
.header.w = 20,
|
||||||
.header.h = 30,
|
.header.h = 30,
|
||||||
.data_size = 600 * LV_COLOR_SIZE / 8,
|
.data_size = 600 * LV_COLOR_SIZE / 8,
|
||||||
.data = screen_main_ani_out_6W_MOK_6_map,
|
.data = screen_main_ani_in_6W_MOK_6_map,
|
||||||
};
|
};
|
|
@ -9,11 +9,11 @@
|
||||||
#define LV_ATTRIBUTE_MEM_ALIGN
|
#define LV_ATTRIBUTE_MEM_ALIGN
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_7
|
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_7
|
||||||
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_7
|
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_7
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_7 uint8_t screen_main_ani_out_6W_MOK_7_map[] = {
|
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_7 uint8_t screen_main_ani_in_6W_MOK_7_map[] = {
|
||||||
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
||||||
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
@ -148,12 +148,12 @@ const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MA
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
const lv_img_dsc_t screen_main_ani_out_6W_MOK_7 = {
|
const lv_img_dsc_t screen_main_ani_in_6W_MOK_7 = {
|
||||||
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
||||||
.header.always_zero = 0,
|
.header.always_zero = 0,
|
||||||
.header.reserved = 0,
|
.header.reserved = 0,
|
||||||
.header.w = 20,
|
.header.w = 20,
|
||||||
.header.h = 30,
|
.header.h = 30,
|
||||||
.data_size = 600 * LV_COLOR_SIZE / 8,
|
.data_size = 600 * LV_COLOR_SIZE / 8,
|
||||||
.data = screen_main_ani_out_6W_MOK_7_map,
|
.data = screen_main_ani_in_6W_MOK_7_map,
|
||||||
};
|
};
|
|
@ -9,11 +9,11 @@
|
||||||
#define LV_ATTRIBUTE_MEM_ALIGN
|
#define LV_ATTRIBUTE_MEM_ALIGN
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_8
|
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_8
|
||||||
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_8
|
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_8
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_8 uint8_t screen_main_ani_out_6W_MOK_8_map[] = {
|
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_8 uint8_t screen_main_ani_in_6W_MOK_8_map[] = {
|
||||||
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
||||||
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
@ -148,12 +148,12 @@ const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MA
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
const lv_img_dsc_t screen_main_ani_out_6W_MOK_8 = {
|
const lv_img_dsc_t screen_main_ani_in_6W_MOK_8 = {
|
||||||
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
||||||
.header.always_zero = 0,
|
.header.always_zero = 0,
|
||||||
.header.reserved = 0,
|
.header.reserved = 0,
|
||||||
.header.w = 20,
|
.header.w = 20,
|
||||||
.header.h = 30,
|
.header.h = 30,
|
||||||
.data_size = 600 * LV_COLOR_SIZE / 8,
|
.data_size = 600 * LV_COLOR_SIZE / 8,
|
||||||
.data = screen_main_ani_out_6W_MOK_8_map,
|
.data = screen_main_ani_in_6W_MOK_8_map,
|
||||||
};
|
};
|
|
@ -9,11 +9,11 @@
|
||||||
#define LV_ATTRIBUTE_MEM_ALIGN
|
#define LV_ATTRIBUTE_MEM_ALIGN
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_9
|
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_9
|
||||||
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_9
|
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_9
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_9 uint8_t screen_main_ani_out_6W_MOK_9_map[] = {
|
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_9 uint8_t screen_main_ani_in_6W_MOK_9_map[] = {
|
||||||
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
||||||
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
@ -148,12 +148,12 @@ const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MA
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
const lv_img_dsc_t screen_main_ani_out_6W_MOK_9 = {
|
const lv_img_dsc_t screen_main_ani_in_6W_MOK_9 = {
|
||||||
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
||||||
.header.always_zero = 0,
|
.header.always_zero = 0,
|
||||||
.header.reserved = 0,
|
.header.reserved = 0,
|
||||||
.header.w = 20,
|
.header.w = 20,
|
||||||
.header.h = 30,
|
.header.h = 30,
|
||||||
.data_size = 600 * LV_COLOR_SIZE / 8,
|
.data_size = 600 * LV_COLOR_SIZE / 8,
|
||||||
.data = screen_main_ani_out_6W_MOK_9_map,
|
.data = screen_main_ani_in_6W_MOK_9_map,
|
||||||
};
|
};
|
|
@ -9,11 +9,11 @@
|
||||||
#define LV_ATTRIBUTE_MEM_ALIGN
|
#define LV_ATTRIBUTE_MEM_ALIGN
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_NULL
|
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_NULL
|
||||||
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_NULL
|
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_NULL
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_6W_MOK_NULL uint8_t screen_main_ani_out_6W_MOK_null_map[] = {
|
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_6W_MOK_NULL uint8_t screen_main_ani_in_6W_MOK_null_map[] = {
|
||||||
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
||||||
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
@ -148,12 +148,12 @@ const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MA
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
const lv_img_dsc_t screen_main_ani_out_6W_MOK_null = {
|
const lv_img_dsc_t screen_main_ani_in_6W_MOK_null = {
|
||||||
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
||||||
.header.always_zero = 0,
|
.header.always_zero = 0,
|
||||||
.header.reserved = 0,
|
.header.reserved = 0,
|
||||||
.header.w = 20,
|
.header.w = 20,
|
||||||
.header.h = 30,
|
.header.h = 30,
|
||||||
.data_size = 600 * LV_COLOR_SIZE / 8,
|
.data_size = 600 * LV_COLOR_SIZE / 8,
|
||||||
.data = screen_main_ani_out_6W_MOK_null_map,
|
.data = screen_main_ani_in_6W_MOK_null_map,
|
||||||
};
|
};
|
|
@ -9,11 +9,11 @@
|
||||||
#define LV_ATTRIBUTE_MEM_ALIGN
|
#define LV_ATTRIBUTE_MEM_ALIGN
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_SIGNW_MOK_MINUS
|
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_SIGNW_MOK_MINUS
|
||||||
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_SIGNW_MOK_MINUS
|
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_SIGNW_MOK_MINUS
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_SIGNW_MOK_MINUS uint8_t screen_main_ani_out_signW_MOK_minus_map[] = {
|
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_SIGNW_MOK_MINUS uint8_t screen_main_ani_in_signW_MOK_minus_map[] = {
|
||||||
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
||||||
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
@ -148,12 +148,12 @@ const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MA
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
const lv_img_dsc_t screen_main_ani_out_signW_MOK_minus = {
|
const lv_img_dsc_t screen_main_ani_in_signW_MOK_minus = {
|
||||||
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
||||||
.header.always_zero = 0,
|
.header.always_zero = 0,
|
||||||
.header.reserved = 0,
|
.header.reserved = 0,
|
||||||
.header.w = 20,
|
.header.w = 20,
|
||||||
.header.h = 30,
|
.header.h = 30,
|
||||||
.data_size = 600 * LV_COLOR_SIZE / 8,
|
.data_size = 600 * LV_COLOR_SIZE / 8,
|
||||||
.data = screen_main_ani_out_signW_MOK_minus_map,
|
.data = screen_main_ani_in_signW_MOK_minus_map,
|
||||||
};
|
};
|
|
@ -9,11 +9,11 @@
|
||||||
#define LV_ATTRIBUTE_MEM_ALIGN
|
#define LV_ATTRIBUTE_MEM_ALIGN
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_SIGNW_MOK_PLUS
|
#ifndef LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_SIGNW_MOK_PLUS
|
||||||
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_SIGNW_MOK_PLUS
|
#define LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_SIGNW_MOK_PLUS
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_OUT_SIGNW_MOK_PLUS uint8_t screen_main_ani_out_signW_MOK_plus_map[] = {
|
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MAIN_ANI_IN_SIGNW_MOK_PLUS uint8_t screen_main_ani_in_signW_MOK_plus_map[] = {
|
||||||
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
|
||||||
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
/*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x49, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x49, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||||
|
@ -148,12 +148,12 @@ const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_SCREEN_MA
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
const lv_img_dsc_t screen_main_ani_out_signW_MOK_plus = {
|
const lv_img_dsc_t screen_main_ani_in_signW_MOK_plus = {
|
||||||
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
.header.cf = LV_IMG_CF_TRUE_COLOR,
|
||||||
.header.always_zero = 0,
|
.header.always_zero = 0,
|
||||||
.header.reserved = 0,
|
.header.reserved = 0,
|
||||||
.header.w = 20,
|
.header.w = 20,
|
||||||
.header.h = 30,
|
.header.h = 30,
|
||||||
.data_size = 600 * LV_COLOR_SIZE / 8,
|
.data_size = 600 * LV_COLOR_SIZE / 8,
|
||||||
.data = screen_main_ani_out_signW_MOK_plus_map,
|
.data = screen_main_ani_in_signW_MOK_plus_map,
|
||||||
};
|
};
|
|
@ -35,7 +35,7 @@ void setup_scr_screen_hidden(lv_ui *ui)
|
||||||
lv_spangroup_set_mode(ui->screen_hidden_spangroup_1, LV_SPAN_MODE_BREAK);
|
lv_spangroup_set_mode(ui->screen_hidden_spangroup_1, LV_SPAN_MODE_BREAK);
|
||||||
//create span
|
//create span
|
||||||
ui->screen_hidden_spangroup_1_span = lv_spangroup_new_span(ui->screen_hidden_spangroup_1);
|
ui->screen_hidden_spangroup_1_span = lv_spangroup_new_span(ui->screen_hidden_spangroup_1);
|
||||||
lv_span_set_text(ui->screen_hidden_spangroup_1_span, "abc");
|
lv_span_set_text(ui->screen_hidden_spangroup_1_span, "");
|
||||||
lv_style_set_text_color(&ui->screen_hidden_spangroup_1_span->style, lv_color_hex(0x000000));
|
lv_style_set_text_color(&ui->screen_hidden_spangroup_1_span->style, lv_color_hex(0x000000));
|
||||||
lv_style_set_text_decor(&ui->screen_hidden_spangroup_1_span->style, LV_TEXT_DECOR_NONE);
|
lv_style_set_text_decor(&ui->screen_hidden_spangroup_1_span->style, LV_TEXT_DECOR_NONE);
|
||||||
lv_style_set_text_font(&ui->screen_hidden_spangroup_1_span->style, &lv_font_SourceHanSerifSC_Regular_14);
|
lv_style_set_text_font(&ui->screen_hidden_spangroup_1_span->style, &lv_font_SourceHanSerifSC_Regular_14);
|
||||||
|
|
|
@ -337,11 +337,11 @@ void setup_scr_screen_main(lv_ui *ui)
|
||||||
//Write codes screen_main_img_cursor
|
//Write codes screen_main_img_cursor
|
||||||
ui->screen_main_img_cursor = lv_img_create(ui->screen_main);
|
ui->screen_main_img_cursor = lv_img_create(ui->screen_main);
|
||||||
lv_obj_add_flag(ui->screen_main_img_cursor, LV_OBJ_FLAG_CLICKABLE);
|
lv_obj_add_flag(ui->screen_main_img_cursor, LV_OBJ_FLAG_CLICKABLE);
|
||||||
lv_img_set_src(ui->screen_main_img_cursor, &_triangle_alpha_15x8);
|
lv_img_set_src(ui->screen_main_img_cursor, &_triangle_alpha_14x8);
|
||||||
lv_img_set_pivot(ui->screen_main_img_cursor, 50,50);
|
lv_img_set_pivot(ui->screen_main_img_cursor, 50,50);
|
||||||
lv_img_set_angle(ui->screen_main_img_cursor, 0);
|
lv_img_set_angle(ui->screen_main_img_cursor, 0);
|
||||||
lv_obj_set_pos(ui->screen_main_img_cursor, 208, 230);
|
lv_obj_set_pos(ui->screen_main_img_cursor, 208, 230);
|
||||||
lv_obj_set_size(ui->screen_main_img_cursor, 15, 8);
|
lv_obj_set_size(ui->screen_main_img_cursor, 14, 8);
|
||||||
|
|
||||||
//Write style for screen_main_img_cursor, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
//Write style for screen_main_img_cursor, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
lv_obj_set_style_img_recolor_opa(ui->screen_main_img_cursor, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_img_recolor_opa(ui->screen_main_img_cursor, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
|
@ -172,7 +172,7 @@ void setup_scr_screen_setting(lv_ui *ui)
|
||||||
ui->screen_setting_label_15 = lv_label_create(ui->screen_setting);
|
ui->screen_setting_label_15 = lv_label_create(ui->screen_setting);
|
||||||
lv_label_set_text(ui->screen_setting_label_15, "4");
|
lv_label_set_text(ui->screen_setting_label_15, "4");
|
||||||
lv_label_set_long_mode(ui->screen_setting_label_15, LV_LABEL_LONG_WRAP);
|
lv_label_set_long_mode(ui->screen_setting_label_15, LV_LABEL_LONG_WRAP);
|
||||||
lv_obj_set_pos(ui->screen_setting_label_15, 265, 72);
|
lv_obj_set_pos(ui->screen_setting_label_15, 280, 72);
|
||||||
lv_obj_set_size(ui->screen_setting_label_15, 35, 25);
|
lv_obj_set_size(ui->screen_setting_label_15, 35, 25);
|
||||||
|
|
||||||
//Write style for screen_setting_label_15, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
//Write style for screen_setting_label_15, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
@ -181,10 +181,12 @@ void setup_scr_screen_setting(lv_ui *ui)
|
||||||
lv_obj_set_style_text_color(ui->screen_setting_label_15, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_color(ui->screen_setting_label_15, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_font(ui->screen_setting_label_15, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_font(ui->screen_setting_label_15, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_opa(ui->screen_setting_label_15, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_opa(ui->screen_setting_label_15, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_letter_space(ui->screen_setting_label_15, 2, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_15, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_line_space(ui->screen_setting_label_15, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_15, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_align(ui->screen_setting_label_15, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_align(ui->screen_setting_label_15, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_bg_opa(ui->screen_setting_label_15, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_15, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_color(ui->screen_setting_label_15, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_grad_dir(ui->screen_setting_label_15, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_pad_top(ui->screen_setting_label_15, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_pad_top(ui->screen_setting_label_15, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_pad_right(ui->screen_setting_label_15, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_pad_right(ui->screen_setting_label_15, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_pad_bottom(ui->screen_setting_label_15, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_15, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
@ -195,7 +197,7 @@ void setup_scr_screen_setting(lv_ui *ui)
|
||||||
ui->screen_setting_label_14 = lv_label_create(ui->screen_setting);
|
ui->screen_setting_label_14 = lv_label_create(ui->screen_setting);
|
||||||
lv_label_set_text(ui->screen_setting_label_14, "下限");
|
lv_label_set_text(ui->screen_setting_label_14, "下限");
|
||||||
lv_label_set_long_mode(ui->screen_setting_label_14, LV_LABEL_LONG_WRAP);
|
lv_label_set_long_mode(ui->screen_setting_label_14, LV_LABEL_LONG_WRAP);
|
||||||
lv_obj_set_pos(ui->screen_setting_label_14, 230, 72);
|
lv_obj_set_pos(ui->screen_setting_label_14, 240, 72);
|
||||||
lv_obj_set_size(ui->screen_setting_label_14, 35, 25);
|
lv_obj_set_size(ui->screen_setting_label_14, 35, 25);
|
||||||
|
|
||||||
//Write style for screen_setting_label_14, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
//Write style for screen_setting_label_14, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
@ -204,7 +206,7 @@ void setup_scr_screen_setting(lv_ui *ui)
|
||||||
lv_obj_set_style_text_color(ui->screen_setting_label_14, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_color(ui->screen_setting_label_14, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_font(ui->screen_setting_label_14, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_font(ui->screen_setting_label_14, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_opa(ui->screen_setting_label_14, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_opa(ui->screen_setting_label_14, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_letter_space(ui->screen_setting_label_14, 2, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_14, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_line_space(ui->screen_setting_label_14, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_14, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_align(ui->screen_setting_label_14, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_align(ui->screen_setting_label_14, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_bg_opa(ui->screen_setting_label_14, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_14, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
@ -218,7 +220,7 @@ void setup_scr_screen_setting(lv_ui *ui)
|
||||||
ui->screen_setting_label_13 = lv_label_create(ui->screen_setting);
|
ui->screen_setting_label_13 = lv_label_create(ui->screen_setting);
|
||||||
lv_label_set_text(ui->screen_setting_label_13, "24");
|
lv_label_set_text(ui->screen_setting_label_13, "24");
|
||||||
lv_label_set_long_mode(ui->screen_setting_label_13, LV_LABEL_LONG_WRAP);
|
lv_label_set_long_mode(ui->screen_setting_label_13, LV_LABEL_LONG_WRAP);
|
||||||
lv_obj_set_pos(ui->screen_setting_label_13, 195, 72);
|
lv_obj_set_pos(ui->screen_setting_label_13, 200, 72);
|
||||||
lv_obj_set_size(ui->screen_setting_label_13, 35, 25);
|
lv_obj_set_size(ui->screen_setting_label_13, 35, 25);
|
||||||
|
|
||||||
//Write style for screen_setting_label_13, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
//Write style for screen_setting_label_13, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
@ -227,10 +229,12 @@ void setup_scr_screen_setting(lv_ui *ui)
|
||||||
lv_obj_set_style_text_color(ui->screen_setting_label_13, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_color(ui->screen_setting_label_13, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_font(ui->screen_setting_label_13, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_font(ui->screen_setting_label_13, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_opa(ui->screen_setting_label_13, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_opa(ui->screen_setting_label_13, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_letter_space(ui->screen_setting_label_13, 2, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_13, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_line_space(ui->screen_setting_label_13, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_13, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_align(ui->screen_setting_label_13, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_align(ui->screen_setting_label_13, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_bg_opa(ui->screen_setting_label_13, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_13, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_color(ui->screen_setting_label_13, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_grad_dir(ui->screen_setting_label_13, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_pad_top(ui->screen_setting_label_13, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_pad_top(ui->screen_setting_label_13, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_pad_right(ui->screen_setting_label_13, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_pad_right(ui->screen_setting_label_13, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_pad_bottom(ui->screen_setting_label_13, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_13, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
@ -250,7 +254,7 @@ void setup_scr_screen_setting(lv_ui *ui)
|
||||||
lv_obj_set_style_text_color(ui->screen_setting_label_12, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_color(ui->screen_setting_label_12, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_font(ui->screen_setting_label_12, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_font(ui->screen_setting_label_12, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_opa(ui->screen_setting_label_12, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_opa(ui->screen_setting_label_12, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_letter_space(ui->screen_setting_label_12, 2, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_12, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_line_space(ui->screen_setting_label_12, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_12, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_align(ui->screen_setting_label_12, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_align(ui->screen_setting_label_12, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_bg_opa(ui->screen_setting_label_12, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_12, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
@ -273,7 +277,7 @@ void setup_scr_screen_setting(lv_ui *ui)
|
||||||
lv_obj_set_style_text_color(ui->screen_setting_label_11, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_color(ui->screen_setting_label_11, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_font(ui->screen_setting_label_11, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_font(ui->screen_setting_label_11, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_opa(ui->screen_setting_label_11, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_opa(ui->screen_setting_label_11, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_letter_space(ui->screen_setting_label_11, 2, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_11, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_line_space(ui->screen_setting_label_11, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_11, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_align(ui->screen_setting_label_11, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_align(ui->screen_setting_label_11, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_bg_opa(ui->screen_setting_label_11, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_11, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
@ -296,7 +300,7 @@ void setup_scr_screen_setting(lv_ui *ui)
|
||||||
lv_obj_set_style_text_color(ui->screen_setting_label_10, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_color(ui->screen_setting_label_10, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_font(ui->screen_setting_label_10, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_font(ui->screen_setting_label_10, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_opa(ui->screen_setting_label_10, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_opa(ui->screen_setting_label_10, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_letter_space(ui->screen_setting_label_10, 2, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_10, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_line_space(ui->screen_setting_label_10, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_10, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_align(ui->screen_setting_label_10, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_align(ui->screen_setting_label_10, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_bg_opa(ui->screen_setting_label_10, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_10, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
@ -310,7 +314,7 @@ void setup_scr_screen_setting(lv_ui *ui)
|
||||||
ui->screen_setting_label_05 = lv_label_create(ui->screen_setting);
|
ui->screen_setting_label_05 = lv_label_create(ui->screen_setting);
|
||||||
lv_label_set_text(ui->screen_setting_label_05, "0");
|
lv_label_set_text(ui->screen_setting_label_05, "0");
|
||||||
lv_label_set_long_mode(ui->screen_setting_label_05, LV_LABEL_LONG_WRAP);
|
lv_label_set_long_mode(ui->screen_setting_label_05, LV_LABEL_LONG_WRAP);
|
||||||
lv_obj_set_pos(ui->screen_setting_label_05, 265, 40);
|
lv_obj_set_pos(ui->screen_setting_label_05, 280, 40);
|
||||||
lv_obj_set_size(ui->screen_setting_label_05, 35, 25);
|
lv_obj_set_size(ui->screen_setting_label_05, 35, 25);
|
||||||
|
|
||||||
//Write style for screen_setting_label_05, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
//Write style for screen_setting_label_05, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
@ -319,10 +323,12 @@ void setup_scr_screen_setting(lv_ui *ui)
|
||||||
lv_obj_set_style_text_color(ui->screen_setting_label_05, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_color(ui->screen_setting_label_05, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_font(ui->screen_setting_label_05, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_font(ui->screen_setting_label_05, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_opa(ui->screen_setting_label_05, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_opa(ui->screen_setting_label_05, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_letter_space(ui->screen_setting_label_05, 2, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_05, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_line_space(ui->screen_setting_label_05, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_05, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_align(ui->screen_setting_label_05, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_align(ui->screen_setting_label_05, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_bg_opa(ui->screen_setting_label_05, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_05, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_color(ui->screen_setting_label_05, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_grad_dir(ui->screen_setting_label_05, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_pad_top(ui->screen_setting_label_05, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_pad_top(ui->screen_setting_label_05, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_pad_right(ui->screen_setting_label_05, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_pad_right(ui->screen_setting_label_05, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_pad_bottom(ui->screen_setting_label_05, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_05, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
@ -333,7 +339,7 @@ void setup_scr_screen_setting(lv_ui *ui)
|
||||||
ui->screen_setting_label_04 = lv_label_create(ui->screen_setting);
|
ui->screen_setting_label_04 = lv_label_create(ui->screen_setting);
|
||||||
lv_label_set_text(ui->screen_setting_label_04, "下限");
|
lv_label_set_text(ui->screen_setting_label_04, "下限");
|
||||||
lv_label_set_long_mode(ui->screen_setting_label_04, LV_LABEL_LONG_WRAP);
|
lv_label_set_long_mode(ui->screen_setting_label_04, LV_LABEL_LONG_WRAP);
|
||||||
lv_obj_set_pos(ui->screen_setting_label_04, 230, 40);
|
lv_obj_set_pos(ui->screen_setting_label_04, 240, 40);
|
||||||
lv_obj_set_size(ui->screen_setting_label_04, 35, 25);
|
lv_obj_set_size(ui->screen_setting_label_04, 35, 25);
|
||||||
|
|
||||||
//Write style for screen_setting_label_04, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
//Write style for screen_setting_label_04, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
@ -342,7 +348,7 @@ void setup_scr_screen_setting(lv_ui *ui)
|
||||||
lv_obj_set_style_text_color(ui->screen_setting_label_04, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_color(ui->screen_setting_label_04, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_font(ui->screen_setting_label_04, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_font(ui->screen_setting_label_04, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_opa(ui->screen_setting_label_04, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_opa(ui->screen_setting_label_04, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_letter_space(ui->screen_setting_label_04, 2, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_04, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_line_space(ui->screen_setting_label_04, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_04, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_align(ui->screen_setting_label_04, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_align(ui->screen_setting_label_04, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_bg_opa(ui->screen_setting_label_04, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_04, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
@ -356,7 +362,7 @@ void setup_scr_screen_setting(lv_ui *ui)
|
||||||
ui->screen_setting_label_03 = lv_label_create(ui->screen_setting);
|
ui->screen_setting_label_03 = lv_label_create(ui->screen_setting);
|
||||||
lv_label_set_text(ui->screen_setting_label_03, "30");
|
lv_label_set_text(ui->screen_setting_label_03, "30");
|
||||||
lv_label_set_long_mode(ui->screen_setting_label_03, LV_LABEL_LONG_WRAP);
|
lv_label_set_long_mode(ui->screen_setting_label_03, LV_LABEL_LONG_WRAP);
|
||||||
lv_obj_set_pos(ui->screen_setting_label_03, 195, 40);
|
lv_obj_set_pos(ui->screen_setting_label_03, 200, 40);
|
||||||
lv_obj_set_size(ui->screen_setting_label_03, 35, 25);
|
lv_obj_set_size(ui->screen_setting_label_03, 35, 25);
|
||||||
|
|
||||||
//Write style for screen_setting_label_03, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
//Write style for screen_setting_label_03, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
@ -365,10 +371,12 @@ void setup_scr_screen_setting(lv_ui *ui)
|
||||||
lv_obj_set_style_text_color(ui->screen_setting_label_03, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_color(ui->screen_setting_label_03, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_font(ui->screen_setting_label_03, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_font(ui->screen_setting_label_03, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_opa(ui->screen_setting_label_03, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_opa(ui->screen_setting_label_03, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_letter_space(ui->screen_setting_label_03, 2, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_03, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_line_space(ui->screen_setting_label_03, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_03, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_align(ui->screen_setting_label_03, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_align(ui->screen_setting_label_03, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_bg_opa(ui->screen_setting_label_03, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_03, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_color(ui->screen_setting_label_03, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_grad_dir(ui->screen_setting_label_03, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_pad_top(ui->screen_setting_label_03, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_pad_top(ui->screen_setting_label_03, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_pad_right(ui->screen_setting_label_03, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_pad_right(ui->screen_setting_label_03, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_pad_bottom(ui->screen_setting_label_03, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_03, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
@ -388,7 +396,7 @@ void setup_scr_screen_setting(lv_ui *ui)
|
||||||
lv_obj_set_style_text_color(ui->screen_setting_label_02, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_color(ui->screen_setting_label_02, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_font(ui->screen_setting_label_02, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_font(ui->screen_setting_label_02, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_opa(ui->screen_setting_label_02, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_opa(ui->screen_setting_label_02, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_letter_space(ui->screen_setting_label_02, 2, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_02, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_line_space(ui->screen_setting_label_02, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_02, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_align(ui->screen_setting_label_02, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_align(ui->screen_setting_label_02, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_bg_opa(ui->screen_setting_label_02, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_02, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
@ -411,7 +419,7 @@ void setup_scr_screen_setting(lv_ui *ui)
|
||||||
lv_obj_set_style_text_color(ui->screen_setting_label_01, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_color(ui->screen_setting_label_01, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_font(ui->screen_setting_label_01, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_font(ui->screen_setting_label_01, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_opa(ui->screen_setting_label_01, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_opa(ui->screen_setting_label_01, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_letter_space(ui->screen_setting_label_01, 2, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_01, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_line_space(ui->screen_setting_label_01, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_01, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_align(ui->screen_setting_label_01, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_align(ui->screen_setting_label_01, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_bg_opa(ui->screen_setting_label_01, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_01, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
@ -436,7 +444,7 @@ void setup_scr_screen_setting(lv_ui *ui)
|
||||||
lv_obj_set_style_text_color(ui->screen_setting_label_00, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_color(ui->screen_setting_label_00, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_font(ui->screen_setting_label_00, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_font(ui->screen_setting_label_00, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_opa(ui->screen_setting_label_00, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_opa(ui->screen_setting_label_00, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_letter_space(ui->screen_setting_label_00, 2, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_00, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_line_space(ui->screen_setting_label_00, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_00, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_text_align(ui->screen_setting_label_00, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_text_align(ui->screen_setting_label_00, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_bg_opa(ui->screen_setting_label_00, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_00, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
@ -446,6 +454,574 @@ void setup_scr_screen_setting(lv_ui *ui)
|
||||||
lv_obj_set_style_pad_left(ui->screen_setting_label_00, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_pad_left(ui->screen_setting_label_00, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_shadow_width(ui->screen_setting_label_00, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_00, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_20
|
||||||
|
ui->screen_setting_label_20 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_20, "电阻");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_20, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_20, 90, 104);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_20, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_20, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_20, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_20, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_20, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_20, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_20, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_20, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_20, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_20, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_20, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_20, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_20, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_20, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_20, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_20, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_21
|
||||||
|
ui->screen_setting_label_21 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_21, "Ω");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_21, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_21, 125, 104);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_21, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_21, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_21, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_21, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_21, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_21, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_21, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_21, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_21, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_21, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_21, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_21, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_21, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_21, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_21, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_21, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_22
|
||||||
|
ui->screen_setting_label_22 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_22, "上限");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_22, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_22, 160, 104);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_22, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_22, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_22, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_22, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_22, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_22, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_22, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_22, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_22, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_22, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_22, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_22, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_22, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_22, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_22, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_22, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_23
|
||||||
|
ui->screen_setting_label_23 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_23, "4000");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_23, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_23, 200, 104);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_23, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_23, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_23, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_23, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_23, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_23, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_23, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_23, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_23, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_23, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_23, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_color(ui->screen_setting_label_23, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_grad_dir(ui->screen_setting_label_23, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_23, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_23, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_23, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_23, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_23, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_24
|
||||||
|
ui->screen_setting_label_24 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_24, "下限");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_24, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_24, 240, 104);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_24, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_24, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_24, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_24, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_24, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_24, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_24, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_24, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_24, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_24, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_24, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_24, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_24, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_24, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_24, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_24, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_25
|
||||||
|
ui->screen_setting_label_25 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_25, "0");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_25, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_25, 280, 104);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_25, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_25, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_25, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_25, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_25, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_25, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_25, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_25, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_25, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_25, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_25, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_color(ui->screen_setting_label_25, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_grad_dir(ui->screen_setting_label_25, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_25, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_25, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_25, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_25, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_25, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_30
|
||||||
|
ui->screen_setting_label_30 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_30, "频率");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_30, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_30, 90, 136);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_30, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_30, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_30, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_30, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_30, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_30, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_30, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_30, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_30, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_30, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_30, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_30, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_30, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_30, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_30, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_30, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_40
|
||||||
|
ui->screen_setting_label_40 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_40, "TC");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_40, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_40, 90, 168);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_40, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_40, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_40, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_40, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_40, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_40, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_40, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_40, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_40, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_40, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_40, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_40, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_40, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_40, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_40, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_40, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_50
|
||||||
|
ui->screen_setting_label_50 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_50, "RTD");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_50, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_50, 90, 200);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_50, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_50, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_50, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_50, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_50, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_50, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_50, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_50, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_50, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_50, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_50, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_50, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_50, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_50, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_50, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_50, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_31
|
||||||
|
ui->screen_setting_label_31 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_31, "KHz");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_31, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_31, 125, 136);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_31, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_31, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_31, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_31, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_31, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_31, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_31, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_31, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_31, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_31, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_31, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_31, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_31, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_31, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_31, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_31, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_41
|
||||||
|
ui->screen_setting_label_41 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_41, "℃");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_41, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_41, 125, 168);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_41, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_41, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_41, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_41, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_41, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_41, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_41, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_41, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_41, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_41, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_41, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_41, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_41, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_41, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_41, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_41, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_51
|
||||||
|
ui->screen_setting_label_51 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_51, "℃");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_51, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_51, 125, 200);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_51, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_51, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_51, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_51, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_51, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_51, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_51, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_51, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_51, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_51, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_51, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_51, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_51, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_51, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_51, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_51, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_32
|
||||||
|
ui->screen_setting_label_32 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_32, "上限");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_32, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_32, 160, 136);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_32, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_32, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_32, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_32, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_32, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_32, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_32, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_32, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_32, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_32, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_32, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_32, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_32, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_32, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_32, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_32, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_42
|
||||||
|
ui->screen_setting_label_42 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_42, "上限");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_42, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_42, 160, 168);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_42, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_42, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_42, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_42, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_42, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_42, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_42, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_42, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_42, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_42, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_42, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_42, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_42, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_42, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_42, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_42, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_52
|
||||||
|
ui->screen_setting_label_52 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_52, "上限");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_52, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_52, 160, 200);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_52, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_52, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_52, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_52, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_52, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_52, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_52, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_52, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_52, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_52, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_52, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_52, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_52, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_52, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_52, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_52, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_33
|
||||||
|
ui->screen_setting_label_33 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_33, "100");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_33, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_33, 200, 136);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_33, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_33, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_33, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_33, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_33, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_33, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_33, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_33, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_33, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_33, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_33, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_color(ui->screen_setting_label_33, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_grad_dir(ui->screen_setting_label_33, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_33, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_33, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_33, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_33, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_33, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_43
|
||||||
|
ui->screen_setting_label_43 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_43, "1820");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_43, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_43, 200, 168);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_43, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_43, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_43, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_43, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_43, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_43, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_43, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_43, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_43, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_43, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_43, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_color(ui->screen_setting_label_43, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_grad_dir(ui->screen_setting_label_43, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_43, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_43, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_43, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_43, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_43, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_53
|
||||||
|
ui->screen_setting_label_53 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_53, "850");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_53, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_53, 200, 200);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_53, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_53, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_53, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_53, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_53, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_53, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_53, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_53, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_53, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_53, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_53, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_color(ui->screen_setting_label_53, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_grad_dir(ui->screen_setting_label_53, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_53, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_53, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_53, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_53, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_53, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_34
|
||||||
|
ui->screen_setting_label_34 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_34, "下限");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_34, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_34, 240, 136);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_34, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_34, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_34, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_34, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_34, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_34, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_34, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_34, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_34, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_34, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_34, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_34, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_34, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_34, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_34, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_34, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_44
|
||||||
|
ui->screen_setting_label_44 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_44, "下限");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_44, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_44, 240, 168);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_44, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_44, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_44, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_44, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_44, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_44, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_44, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_44, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_44, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_44, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_44, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_44, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_44, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_44, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_44, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_44, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_54
|
||||||
|
ui->screen_setting_label_54 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_54, "下限");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_54, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_54, 240, 200);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_54, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_54, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_54, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_54, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_54, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_54, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_54, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_54, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_54, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_54, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_54, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_54, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_54, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_54, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_54, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_54, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_35
|
||||||
|
ui->screen_setting_label_35 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_35, "0");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_35, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_35, 280, 136);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_35, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_35, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_35, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_35, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_35, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_35, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_35, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_35, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_35, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_35, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_35, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_color(ui->screen_setting_label_35, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_grad_dir(ui->screen_setting_label_35, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_35, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_35, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_35, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_35, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_35, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_45
|
||||||
|
ui->screen_setting_label_45 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_45, "-250");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_45, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_45, 280, 168);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_45, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_45, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_45, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_45, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_45, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_45, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_45, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_45, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_45, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_45, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_45, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_color(ui->screen_setting_label_45, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_grad_dir(ui->screen_setting_label_45, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_45, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_45, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_45, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_45, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_45, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_55
|
||||||
|
ui->screen_setting_label_55 = lv_label_create(ui->screen_setting);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_55, "-200");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_55, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_55, 280, 200);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_55, 35, 25);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_55, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_55, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_55, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_55, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_55, &lv_font_SourceHanSerifSC_Regular_14, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_55, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_55, 1, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_55, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_55, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_55, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_color(ui->screen_setting_label_55, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_grad_dir(ui->screen_setting_label_55, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_55, 8, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_55, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_55, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_55, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_55, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
//The custom code of screen_setting.
|
//The custom code of screen_setting.
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -85,194 +85,194 @@ const lv_img_dsc_t * screen_main_animimg_battery_imgs[6] = {
|
||||||
&screen_main_animimg_batterybt100,
|
&screen_main_animimg_batterybt100,
|
||||||
};
|
};
|
||||||
const lv_img_dsc_t * screen_main_ani_in_6_imgs[11] = {
|
const lv_img_dsc_t * screen_main_ani_in_6_imgs[11] = {
|
||||||
&screen_main_ani_out_6W_MOK_0,
|
&screen_main_ani_in_6W_MOK_0,
|
||||||
&screen_main_ani_out_6W_MOK_1,
|
&screen_main_ani_in_6W_MOK_1,
|
||||||
&screen_main_ani_out_6W_MOK_2,
|
&screen_main_ani_in_6W_MOK_2,
|
||||||
&screen_main_ani_out_6W_MOK_3,
|
&screen_main_ani_in_6W_MOK_3,
|
||||||
&screen_main_ani_out_6W_MOK_4,
|
&screen_main_ani_in_6W_MOK_4,
|
||||||
&screen_main_ani_out_6W_MOK_5,
|
&screen_main_ani_in_6W_MOK_5,
|
||||||
&screen_main_ani_out_6W_MOK_6,
|
&screen_main_ani_in_6W_MOK_6,
|
||||||
&screen_main_ani_out_6W_MOK_7,
|
&screen_main_ani_in_6W_MOK_7,
|
||||||
&screen_main_ani_out_6W_MOK_8,
|
&screen_main_ani_in_6W_MOK_8,
|
||||||
&screen_main_ani_out_6W_MOK_9,
|
&screen_main_ani_in_6W_MOK_9,
|
||||||
&screen_main_ani_out_6W_MOK_null,
|
&screen_main_ani_in_6W_MOK_null,
|
||||||
};
|
};
|
||||||
const lv_img_dsc_t * screen_main_ani_in_5_imgs[11] = {
|
const lv_img_dsc_t * screen_main_ani_in_5_imgs[11] = {
|
||||||
&screen_main_ani_out_6W_MOK_0,
|
&screen_main_ani_in_6W_MOK_0,
|
||||||
&screen_main_ani_out_6W_MOK_1,
|
&screen_main_ani_in_6W_MOK_1,
|
||||||
&screen_main_ani_out_6W_MOK_2,
|
&screen_main_ani_in_6W_MOK_2,
|
||||||
&screen_main_ani_out_6W_MOK_3,
|
&screen_main_ani_in_6W_MOK_3,
|
||||||
&screen_main_ani_out_6W_MOK_4,
|
&screen_main_ani_in_6W_MOK_4,
|
||||||
&screen_main_ani_out_6W_MOK_5,
|
&screen_main_ani_in_6W_MOK_5,
|
||||||
&screen_main_ani_out_6W_MOK_6,
|
&screen_main_ani_in_6W_MOK_6,
|
||||||
&screen_main_ani_out_6W_MOK_7,
|
&screen_main_ani_in_6W_MOK_7,
|
||||||
&screen_main_ani_out_6W_MOK_8,
|
&screen_main_ani_in_6W_MOK_8,
|
||||||
&screen_main_ani_out_6W_MOK_9,
|
&screen_main_ani_in_6W_MOK_9,
|
||||||
&screen_main_ani_out_6W_MOK_null,
|
&screen_main_ani_in_6W_MOK_null,
|
||||||
};
|
};
|
||||||
const lv_img_dsc_t * screen_main_ani_in_4_imgs[11] = {
|
const lv_img_dsc_t * screen_main_ani_in_4_imgs[11] = {
|
||||||
&screen_main_ani_out_6W_MOK_0,
|
&screen_main_ani_in_6W_MOK_0,
|
||||||
&screen_main_ani_out_6W_MOK_1,
|
&screen_main_ani_in_6W_MOK_1,
|
||||||
&screen_main_ani_out_6W_MOK_2,
|
&screen_main_ani_in_6W_MOK_2,
|
||||||
&screen_main_ani_out_6W_MOK_3,
|
&screen_main_ani_in_6W_MOK_3,
|
||||||
&screen_main_ani_out_6W_MOK_4,
|
&screen_main_ani_in_6W_MOK_4,
|
||||||
&screen_main_ani_out_6W_MOK_5,
|
&screen_main_ani_in_6W_MOK_5,
|
||||||
&screen_main_ani_out_6W_MOK_6,
|
&screen_main_ani_in_6W_MOK_6,
|
||||||
&screen_main_ani_out_6W_MOK_7,
|
&screen_main_ani_in_6W_MOK_7,
|
||||||
&screen_main_ani_out_6W_MOK_8,
|
&screen_main_ani_in_6W_MOK_8,
|
||||||
&screen_main_ani_out_6W_MOK_9,
|
&screen_main_ani_in_6W_MOK_9,
|
||||||
&screen_main_ani_out_6W_MOK_null,
|
&screen_main_ani_in_6W_MOK_null,
|
||||||
};
|
};
|
||||||
const lv_img_dsc_t * screen_main_ani_in_3_imgs[11] = {
|
const lv_img_dsc_t * screen_main_ani_in_3_imgs[11] = {
|
||||||
&screen_main_ani_out_6W_MOK_0,
|
&screen_main_ani_in_6W_MOK_0,
|
||||||
&screen_main_ani_out_6W_MOK_1,
|
&screen_main_ani_in_6W_MOK_1,
|
||||||
&screen_main_ani_out_6W_MOK_2,
|
&screen_main_ani_in_6W_MOK_2,
|
||||||
&screen_main_ani_out_6W_MOK_3,
|
&screen_main_ani_in_6W_MOK_3,
|
||||||
&screen_main_ani_out_6W_MOK_4,
|
&screen_main_ani_in_6W_MOK_4,
|
||||||
&screen_main_ani_out_6W_MOK_5,
|
&screen_main_ani_in_6W_MOK_5,
|
||||||
&screen_main_ani_out_6W_MOK_6,
|
&screen_main_ani_in_6W_MOK_6,
|
||||||
&screen_main_ani_out_6W_MOK_7,
|
&screen_main_ani_in_6W_MOK_7,
|
||||||
&screen_main_ani_out_6W_MOK_8,
|
&screen_main_ani_in_6W_MOK_8,
|
||||||
&screen_main_ani_out_6W_MOK_9,
|
&screen_main_ani_in_6W_MOK_9,
|
||||||
&screen_main_ani_out_6W_MOK_null,
|
&screen_main_ani_in_6W_MOK_null,
|
||||||
};
|
};
|
||||||
const lv_img_dsc_t * screen_main_ani_in_2_imgs[11] = {
|
const lv_img_dsc_t * screen_main_ani_in_2_imgs[11] = {
|
||||||
&screen_main_ani_out_6W_MOK_0,
|
&screen_main_ani_in_6W_MOK_0,
|
||||||
&screen_main_ani_out_6W_MOK_1,
|
&screen_main_ani_in_6W_MOK_1,
|
||||||
&screen_main_ani_out_6W_MOK_2,
|
&screen_main_ani_in_6W_MOK_2,
|
||||||
&screen_main_ani_out_6W_MOK_3,
|
&screen_main_ani_in_6W_MOK_3,
|
||||||
&screen_main_ani_out_6W_MOK_4,
|
&screen_main_ani_in_6W_MOK_4,
|
||||||
&screen_main_ani_out_6W_MOK_5,
|
&screen_main_ani_in_6W_MOK_5,
|
||||||
&screen_main_ani_out_6W_MOK_6,
|
&screen_main_ani_in_6W_MOK_6,
|
||||||
&screen_main_ani_out_6W_MOK_7,
|
&screen_main_ani_in_6W_MOK_7,
|
||||||
&screen_main_ani_out_6W_MOK_8,
|
&screen_main_ani_in_6W_MOK_8,
|
||||||
&screen_main_ani_out_6W_MOK_9,
|
&screen_main_ani_in_6W_MOK_9,
|
||||||
&screen_main_ani_out_6W_MOK_null,
|
&screen_main_ani_in_6W_MOK_null,
|
||||||
};
|
};
|
||||||
const lv_img_dsc_t * screen_main_ani_in_1_imgs[11] = {
|
const lv_img_dsc_t * screen_main_ani_in_1_imgs[11] = {
|
||||||
&screen_main_ani_out_6W_MOK_0,
|
&screen_main_ani_in_6W_MOK_0,
|
||||||
&screen_main_ani_out_6W_MOK_1,
|
&screen_main_ani_in_6W_MOK_1,
|
||||||
&screen_main_ani_out_6W_MOK_2,
|
&screen_main_ani_in_6W_MOK_2,
|
||||||
&screen_main_ani_out_6W_MOK_3,
|
&screen_main_ani_in_6W_MOK_3,
|
||||||
&screen_main_ani_out_6W_MOK_4,
|
&screen_main_ani_in_6W_MOK_4,
|
||||||
&screen_main_ani_out_6W_MOK_5,
|
&screen_main_ani_in_6W_MOK_5,
|
||||||
&screen_main_ani_out_6W_MOK_6,
|
&screen_main_ani_in_6W_MOK_6,
|
||||||
&screen_main_ani_out_6W_MOK_7,
|
&screen_main_ani_in_6W_MOK_7,
|
||||||
&screen_main_ani_out_6W_MOK_8,
|
&screen_main_ani_in_6W_MOK_8,
|
||||||
&screen_main_ani_out_6W_MOK_9,
|
&screen_main_ani_in_6W_MOK_9,
|
||||||
&screen_main_ani_out_6W_MOK_null,
|
&screen_main_ani_in_6W_MOK_null,
|
||||||
};
|
};
|
||||||
const lv_img_dsc_t * screen_main_ani_in_0_imgs[11] = {
|
const lv_img_dsc_t * screen_main_ani_in_0_imgs[11] = {
|
||||||
&screen_main_ani_out_6W_MOK_0,
|
&screen_main_ani_in_6W_MOK_0,
|
||||||
&screen_main_ani_out_6W_MOK_1,
|
&screen_main_ani_in_6W_MOK_1,
|
||||||
&screen_main_ani_out_6W_MOK_2,
|
&screen_main_ani_in_6W_MOK_2,
|
||||||
&screen_main_ani_out_6W_MOK_3,
|
&screen_main_ani_in_6W_MOK_3,
|
||||||
&screen_main_ani_out_6W_MOK_4,
|
&screen_main_ani_in_6W_MOK_4,
|
||||||
&screen_main_ani_out_6W_MOK_5,
|
&screen_main_ani_in_6W_MOK_5,
|
||||||
&screen_main_ani_out_6W_MOK_6,
|
&screen_main_ani_in_6W_MOK_6,
|
||||||
&screen_main_ani_out_6W_MOK_7,
|
&screen_main_ani_in_6W_MOK_7,
|
||||||
&screen_main_ani_out_6W_MOK_8,
|
&screen_main_ani_in_6W_MOK_8,
|
||||||
&screen_main_ani_out_6W_MOK_9,
|
&screen_main_ani_in_6W_MOK_9,
|
||||||
&screen_main_ani_out_6W_MOK_null,
|
&screen_main_ani_in_6W_MOK_null,
|
||||||
};
|
};
|
||||||
const lv_img_dsc_t * screen_main_ani_in_sign_imgs[3] = {
|
const lv_img_dsc_t * screen_main_ani_in_sign_imgs[3] = {
|
||||||
&screen_main_ani_out_6W_MOK_null,
|
&screen_main_ani_in_6W_MOK_null,
|
||||||
&screen_main_ani_out_signW_MOK_minus,
|
&screen_main_ani_in_signW_MOK_minus,
|
||||||
&screen_main_ani_out_signW_MOK_plus,
|
&screen_main_ani_in_signW_MOK_plus,
|
||||||
};
|
};
|
||||||
const lv_img_dsc_t * screen_main_ani_out_6_imgs[11] = {
|
const lv_img_dsc_t * screen_main_ani_out_6_imgs[11] = {
|
||||||
&screen_main_ani_out_6W_MOK_0,
|
&screen_main_ani_in_6W_MOK_0,
|
||||||
&screen_main_ani_out_6W_MOK_1,
|
&screen_main_ani_in_6W_MOK_1,
|
||||||
&screen_main_ani_out_6W_MOK_2,
|
&screen_main_ani_in_6W_MOK_2,
|
||||||
&screen_main_ani_out_6W_MOK_3,
|
&screen_main_ani_in_6W_MOK_3,
|
||||||
&screen_main_ani_out_6W_MOK_4,
|
&screen_main_ani_in_6W_MOK_4,
|
||||||
&screen_main_ani_out_6W_MOK_5,
|
&screen_main_ani_in_6W_MOK_5,
|
||||||
&screen_main_ani_out_6W_MOK_6,
|
&screen_main_ani_in_6W_MOK_6,
|
||||||
&screen_main_ani_out_6W_MOK_7,
|
&screen_main_ani_in_6W_MOK_7,
|
||||||
&screen_main_ani_out_6W_MOK_8,
|
&screen_main_ani_in_6W_MOK_8,
|
||||||
&screen_main_ani_out_6W_MOK_9,
|
&screen_main_ani_in_6W_MOK_9,
|
||||||
&screen_main_ani_out_6W_MOK_null,
|
&screen_main_ani_in_6W_MOK_null,
|
||||||
};
|
};
|
||||||
const lv_img_dsc_t * screen_main_ani_out_5_imgs[11] = {
|
const lv_img_dsc_t * screen_main_ani_out_5_imgs[11] = {
|
||||||
&screen_main_ani_out_6W_MOK_0,
|
&screen_main_ani_in_6W_MOK_0,
|
||||||
&screen_main_ani_out_6W_MOK_1,
|
&screen_main_ani_in_6W_MOK_1,
|
||||||
&screen_main_ani_out_6W_MOK_2,
|
&screen_main_ani_in_6W_MOK_2,
|
||||||
&screen_main_ani_out_6W_MOK_3,
|
&screen_main_ani_in_6W_MOK_3,
|
||||||
&screen_main_ani_out_6W_MOK_4,
|
&screen_main_ani_in_6W_MOK_4,
|
||||||
&screen_main_ani_out_6W_MOK_5,
|
&screen_main_ani_in_6W_MOK_5,
|
||||||
&screen_main_ani_out_6W_MOK_6,
|
&screen_main_ani_in_6W_MOK_6,
|
||||||
&screen_main_ani_out_6W_MOK_7,
|
&screen_main_ani_in_6W_MOK_7,
|
||||||
&screen_main_ani_out_6W_MOK_8,
|
&screen_main_ani_in_6W_MOK_8,
|
||||||
&screen_main_ani_out_6W_MOK_9,
|
&screen_main_ani_in_6W_MOK_9,
|
||||||
&screen_main_ani_out_6W_MOK_null,
|
&screen_main_ani_in_6W_MOK_null,
|
||||||
};
|
};
|
||||||
const lv_img_dsc_t * screen_main_ani_out_4_imgs[11] = {
|
const lv_img_dsc_t * screen_main_ani_out_4_imgs[11] = {
|
||||||
&screen_main_ani_out_6W_MOK_0,
|
&screen_main_ani_in_6W_MOK_0,
|
||||||
&screen_main_ani_out_6W_MOK_1,
|
&screen_main_ani_in_6W_MOK_1,
|
||||||
&screen_main_ani_out_6W_MOK_2,
|
&screen_main_ani_in_6W_MOK_2,
|
||||||
&screen_main_ani_out_6W_MOK_3,
|
&screen_main_ani_in_6W_MOK_3,
|
||||||
&screen_main_ani_out_6W_MOK_4,
|
&screen_main_ani_in_6W_MOK_4,
|
||||||
&screen_main_ani_out_6W_MOK_5,
|
&screen_main_ani_in_6W_MOK_5,
|
||||||
&screen_main_ani_out_6W_MOK_6,
|
&screen_main_ani_in_6W_MOK_6,
|
||||||
&screen_main_ani_out_6W_MOK_7,
|
&screen_main_ani_in_6W_MOK_7,
|
||||||
&screen_main_ani_out_6W_MOK_8,
|
&screen_main_ani_in_6W_MOK_8,
|
||||||
&screen_main_ani_out_6W_MOK_9,
|
&screen_main_ani_in_6W_MOK_9,
|
||||||
&screen_main_ani_out_6W_MOK_null,
|
&screen_main_ani_in_6W_MOK_null,
|
||||||
};
|
};
|
||||||
const lv_img_dsc_t * screen_main_ani_out_3_imgs[11] = {
|
const lv_img_dsc_t * screen_main_ani_out_3_imgs[11] = {
|
||||||
&screen_main_ani_out_6W_MOK_0,
|
&screen_main_ani_in_6W_MOK_0,
|
||||||
&screen_main_ani_out_6W_MOK_1,
|
&screen_main_ani_in_6W_MOK_1,
|
||||||
&screen_main_ani_out_6W_MOK_2,
|
&screen_main_ani_in_6W_MOK_2,
|
||||||
&screen_main_ani_out_6W_MOK_3,
|
&screen_main_ani_in_6W_MOK_3,
|
||||||
&screen_main_ani_out_6W_MOK_4,
|
&screen_main_ani_in_6W_MOK_4,
|
||||||
&screen_main_ani_out_6W_MOK_5,
|
&screen_main_ani_in_6W_MOK_5,
|
||||||
&screen_main_ani_out_6W_MOK_6,
|
&screen_main_ani_in_6W_MOK_6,
|
||||||
&screen_main_ani_out_6W_MOK_7,
|
&screen_main_ani_in_6W_MOK_7,
|
||||||
&screen_main_ani_out_6W_MOK_8,
|
&screen_main_ani_in_6W_MOK_8,
|
||||||
&screen_main_ani_out_6W_MOK_9,
|
&screen_main_ani_in_6W_MOK_9,
|
||||||
&screen_main_ani_out_6W_MOK_null,
|
&screen_main_ani_in_6W_MOK_null,
|
||||||
};
|
};
|
||||||
const lv_img_dsc_t * screen_main_ani_out_2_imgs[11] = {
|
const lv_img_dsc_t * screen_main_ani_out_2_imgs[11] = {
|
||||||
&screen_main_ani_out_6W_MOK_0,
|
&screen_main_ani_in_6W_MOK_0,
|
||||||
&screen_main_ani_out_6W_MOK_1,
|
&screen_main_ani_in_6W_MOK_1,
|
||||||
&screen_main_ani_out_6W_MOK_2,
|
&screen_main_ani_in_6W_MOK_2,
|
||||||
&screen_main_ani_out_6W_MOK_3,
|
&screen_main_ani_in_6W_MOK_3,
|
||||||
&screen_main_ani_out_6W_MOK_4,
|
&screen_main_ani_in_6W_MOK_4,
|
||||||
&screen_main_ani_out_6W_MOK_5,
|
&screen_main_ani_in_6W_MOK_5,
|
||||||
&screen_main_ani_out_6W_MOK_6,
|
&screen_main_ani_in_6W_MOK_6,
|
||||||
&screen_main_ani_out_6W_MOK_7,
|
&screen_main_ani_in_6W_MOK_7,
|
||||||
&screen_main_ani_out_6W_MOK_8,
|
&screen_main_ani_in_6W_MOK_8,
|
||||||
&screen_main_ani_out_6W_MOK_9,
|
&screen_main_ani_in_6W_MOK_9,
|
||||||
&screen_main_ani_out_6W_MOK_null,
|
&screen_main_ani_in_6W_MOK_null,
|
||||||
};
|
};
|
||||||
const lv_img_dsc_t * screen_main_ani_out_1_imgs[11] = {
|
const lv_img_dsc_t * screen_main_ani_out_1_imgs[11] = {
|
||||||
&screen_main_ani_out_6W_MOK_0,
|
&screen_main_ani_in_6W_MOK_0,
|
||||||
&screen_main_ani_out_6W_MOK_1,
|
&screen_main_ani_in_6W_MOK_1,
|
||||||
&screen_main_ani_out_6W_MOK_2,
|
&screen_main_ani_in_6W_MOK_2,
|
||||||
&screen_main_ani_out_6W_MOK_3,
|
&screen_main_ani_in_6W_MOK_3,
|
||||||
&screen_main_ani_out_6W_MOK_4,
|
&screen_main_ani_in_6W_MOK_4,
|
||||||
&screen_main_ani_out_6W_MOK_5,
|
&screen_main_ani_in_6W_MOK_5,
|
||||||
&screen_main_ani_out_6W_MOK_6,
|
&screen_main_ani_in_6W_MOK_6,
|
||||||
&screen_main_ani_out_6W_MOK_7,
|
&screen_main_ani_in_6W_MOK_7,
|
||||||
&screen_main_ani_out_6W_MOK_8,
|
&screen_main_ani_in_6W_MOK_8,
|
||||||
&screen_main_ani_out_6W_MOK_9,
|
&screen_main_ani_in_6W_MOK_9,
|
||||||
&screen_main_ani_out_6W_MOK_null,
|
&screen_main_ani_in_6W_MOK_null,
|
||||||
};
|
};
|
||||||
const lv_img_dsc_t * screen_main_ani_out_0_imgs[11] = {
|
const lv_img_dsc_t * screen_main_ani_out_0_imgs[11] = {
|
||||||
&screen_main_ani_out_6W_MOK_0,
|
&screen_main_ani_in_6W_MOK_0,
|
||||||
&screen_main_ani_out_6W_MOK_1,
|
&screen_main_ani_in_6W_MOK_1,
|
||||||
&screen_main_ani_out_6W_MOK_2,
|
&screen_main_ani_in_6W_MOK_2,
|
||||||
&screen_main_ani_out_6W_MOK_3,
|
&screen_main_ani_in_6W_MOK_3,
|
||||||
&screen_main_ani_out_6W_MOK_4,
|
&screen_main_ani_in_6W_MOK_4,
|
||||||
&screen_main_ani_out_6W_MOK_5,
|
&screen_main_ani_in_6W_MOK_5,
|
||||||
&screen_main_ani_out_6W_MOK_6,
|
&screen_main_ani_in_6W_MOK_6,
|
||||||
&screen_main_ani_out_6W_MOK_7,
|
&screen_main_ani_in_6W_MOK_7,
|
||||||
&screen_main_ani_out_6W_MOK_8,
|
&screen_main_ani_in_6W_MOK_8,
|
||||||
&screen_main_ani_out_6W_MOK_9,
|
&screen_main_ani_in_6W_MOK_9,
|
||||||
&screen_main_ani_out_6W_MOK_null,
|
&screen_main_ani_in_6W_MOK_null,
|
||||||
};
|
};
|
||||||
const lv_img_dsc_t * screen_main_ani_out_sign_imgs[3] = {
|
const lv_img_dsc_t * screen_main_ani_out_sign_imgs[3] = {
|
||||||
&screen_main_ani_out_6W_MOK_null,
|
&screen_main_ani_in_6W_MOK_null,
|
||||||
&screen_main_ani_out_signW_MOK_minus,
|
&screen_main_ani_in_signW_MOK_minus,
|
||||||
&screen_main_ani_out_signW_MOK_plus,
|
&screen_main_ani_in_signW_MOK_plus,
|
||||||
};
|
};
|
||||||
|
|
|
@ -3945,8 +3945,8 @@
|
||||||
<tvExp>0</tvExp>
|
<tvExp>0</tvExp>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\_triangle_alpha_15x8.c</PathWithFileName>
|
<PathWithFileName>..\LVGL\myGUI\generated\images\_triangle_alpha_14x8.c</PathWithFileName>
|
||||||
<FilenameWithoutPath>_triangle_alpha_15x8.c</FilenameWithoutPath>
|
<FilenameWithoutPath>_triangle_alpha_14x8.c</FilenameWithoutPath>
|
||||||
<RteFlg>0</RteFlg>
|
<RteFlg>0</RteFlg>
|
||||||
<bShared>0</bShared>
|
<bShared>0</bShared>
|
||||||
</File>
|
</File>
|
||||||
|
@ -3969,8 +3969,8 @@
|
||||||
<tvExp>0</tvExp>
|
<tvExp>0</tvExp>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_out_6W_MOK_0.c</PathWithFileName>
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_0.c</PathWithFileName>
|
||||||
<FilenameWithoutPath>screen_main_ani_out_6W_MOK_0.c</FilenameWithoutPath>
|
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_0.c</FilenameWithoutPath>
|
||||||
<RteFlg>0</RteFlg>
|
<RteFlg>0</RteFlg>
|
||||||
<bShared>0</bShared>
|
<bShared>0</bShared>
|
||||||
</File>
|
</File>
|
||||||
|
@ -3981,8 +3981,8 @@
|
||||||
<tvExp>0</tvExp>
|
<tvExp>0</tvExp>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_out_6W_MOK_1.c</PathWithFileName>
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_1.c</PathWithFileName>
|
||||||
<FilenameWithoutPath>screen_main_ani_out_6W_MOK_1.c</FilenameWithoutPath>
|
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_1.c</FilenameWithoutPath>
|
||||||
<RteFlg>0</RteFlg>
|
<RteFlg>0</RteFlg>
|
||||||
<bShared>0</bShared>
|
<bShared>0</bShared>
|
||||||
</File>
|
</File>
|
||||||
|
@ -3993,8 +3993,8 @@
|
||||||
<tvExp>0</tvExp>
|
<tvExp>0</tvExp>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_out_6W_MOK_2.c</PathWithFileName>
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_2.c</PathWithFileName>
|
||||||
<FilenameWithoutPath>screen_main_ani_out_6W_MOK_2.c</FilenameWithoutPath>
|
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_2.c</FilenameWithoutPath>
|
||||||
<RteFlg>0</RteFlg>
|
<RteFlg>0</RteFlg>
|
||||||
<bShared>0</bShared>
|
<bShared>0</bShared>
|
||||||
</File>
|
</File>
|
||||||
|
@ -4005,8 +4005,8 @@
|
||||||
<tvExp>0</tvExp>
|
<tvExp>0</tvExp>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_out_6W_MOK_3.c</PathWithFileName>
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_3.c</PathWithFileName>
|
||||||
<FilenameWithoutPath>screen_main_ani_out_6W_MOK_3.c</FilenameWithoutPath>
|
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_3.c</FilenameWithoutPath>
|
||||||
<RteFlg>0</RteFlg>
|
<RteFlg>0</RteFlg>
|
||||||
<bShared>0</bShared>
|
<bShared>0</bShared>
|
||||||
</File>
|
</File>
|
||||||
|
@ -4017,8 +4017,8 @@
|
||||||
<tvExp>0</tvExp>
|
<tvExp>0</tvExp>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_out_6W_MOK_4.c</PathWithFileName>
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_4.c</PathWithFileName>
|
||||||
<FilenameWithoutPath>screen_main_ani_out_6W_MOK_4.c</FilenameWithoutPath>
|
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_4.c</FilenameWithoutPath>
|
||||||
<RteFlg>0</RteFlg>
|
<RteFlg>0</RteFlg>
|
||||||
<bShared>0</bShared>
|
<bShared>0</bShared>
|
||||||
</File>
|
</File>
|
||||||
|
@ -4029,8 +4029,8 @@
|
||||||
<tvExp>0</tvExp>
|
<tvExp>0</tvExp>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_out_6W_MOK_5.c</PathWithFileName>
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_5.c</PathWithFileName>
|
||||||
<FilenameWithoutPath>screen_main_ani_out_6W_MOK_5.c</FilenameWithoutPath>
|
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_5.c</FilenameWithoutPath>
|
||||||
<RteFlg>0</RteFlg>
|
<RteFlg>0</RteFlg>
|
||||||
<bShared>0</bShared>
|
<bShared>0</bShared>
|
||||||
</File>
|
</File>
|
||||||
|
@ -4041,8 +4041,8 @@
|
||||||
<tvExp>0</tvExp>
|
<tvExp>0</tvExp>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_out_6W_MOK_6.c</PathWithFileName>
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_6.c</PathWithFileName>
|
||||||
<FilenameWithoutPath>screen_main_ani_out_6W_MOK_6.c</FilenameWithoutPath>
|
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_6.c</FilenameWithoutPath>
|
||||||
<RteFlg>0</RteFlg>
|
<RteFlg>0</RteFlg>
|
||||||
<bShared>0</bShared>
|
<bShared>0</bShared>
|
||||||
</File>
|
</File>
|
||||||
|
@ -4053,8 +4053,8 @@
|
||||||
<tvExp>0</tvExp>
|
<tvExp>0</tvExp>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_out_6W_MOK_7.c</PathWithFileName>
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_7.c</PathWithFileName>
|
||||||
<FilenameWithoutPath>screen_main_ani_out_6W_MOK_7.c</FilenameWithoutPath>
|
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_7.c</FilenameWithoutPath>
|
||||||
<RteFlg>0</RteFlg>
|
<RteFlg>0</RteFlg>
|
||||||
<bShared>0</bShared>
|
<bShared>0</bShared>
|
||||||
</File>
|
</File>
|
||||||
|
@ -4065,8 +4065,8 @@
|
||||||
<tvExp>0</tvExp>
|
<tvExp>0</tvExp>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_out_6W_MOK_8.c</PathWithFileName>
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_8.c</PathWithFileName>
|
||||||
<FilenameWithoutPath>screen_main_ani_out_6W_MOK_8.c</FilenameWithoutPath>
|
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_8.c</FilenameWithoutPath>
|
||||||
<RteFlg>0</RteFlg>
|
<RteFlg>0</RteFlg>
|
||||||
<bShared>0</bShared>
|
<bShared>0</bShared>
|
||||||
</File>
|
</File>
|
||||||
|
@ -4077,8 +4077,8 @@
|
||||||
<tvExp>0</tvExp>
|
<tvExp>0</tvExp>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_out_6W_MOK_9.c</PathWithFileName>
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_9.c</PathWithFileName>
|
||||||
<FilenameWithoutPath>screen_main_ani_out_6W_MOK_9.c</FilenameWithoutPath>
|
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_9.c</FilenameWithoutPath>
|
||||||
<RteFlg>0</RteFlg>
|
<RteFlg>0</RteFlg>
|
||||||
<bShared>0</bShared>
|
<bShared>0</bShared>
|
||||||
</File>
|
</File>
|
||||||
|
@ -4089,8 +4089,8 @@
|
||||||
<tvExp>0</tvExp>
|
<tvExp>0</tvExp>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_out_6W_MOK_null.c</PathWithFileName>
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_null.c</PathWithFileName>
|
||||||
<FilenameWithoutPath>screen_main_ani_out_6W_MOK_null.c</FilenameWithoutPath>
|
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_null.c</FilenameWithoutPath>
|
||||||
<RteFlg>0</RteFlg>
|
<RteFlg>0</RteFlg>
|
||||||
<bShared>0</bShared>
|
<bShared>0</bShared>
|
||||||
</File>
|
</File>
|
||||||
|
@ -4101,8 +4101,8 @@
|
||||||
<tvExp>0</tvExp>
|
<tvExp>0</tvExp>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_out_signW_MOK_minus.c</PathWithFileName>
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_signW_MOK_minus.c</PathWithFileName>
|
||||||
<FilenameWithoutPath>screen_main_ani_out_signW_MOK_minus.c</FilenameWithoutPath>
|
<FilenameWithoutPath>screen_main_ani_in_signW_MOK_minus.c</FilenameWithoutPath>
|
||||||
<RteFlg>0</RteFlg>
|
<RteFlg>0</RteFlg>
|
||||||
<bShared>0</bShared>
|
<bShared>0</bShared>
|
||||||
</File>
|
</File>
|
||||||
|
@ -4113,8 +4113,8 @@
|
||||||
<tvExp>0</tvExp>
|
<tvExp>0</tvExp>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_out_signW_MOK_plus.c</PathWithFileName>
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_signW_MOK_plus.c</PathWithFileName>
|
||||||
<FilenameWithoutPath>screen_main_ani_out_signW_MOK_plus.c</FilenameWithoutPath>
|
<FilenameWithoutPath>screen_main_ani_in_signW_MOK_plus.c</FilenameWithoutPath>
|
||||||
<RteFlg>0</RteFlg>
|
<RteFlg>0</RteFlg>
|
||||||
<bShared>0</bShared>
|
<bShared>0</bShared>
|
||||||
</File>
|
</File>
|
||||||
|
|
|
@ -2625,9 +2625,9 @@
|
||||||
<FilePath>..\LVGL\myGUI\generated\images\_logo_alpha_141x60.c</FilePath>
|
<FilePath>..\LVGL\myGUI\generated\images\_logo_alpha_141x60.c</FilePath>
|
||||||
</File>
|
</File>
|
||||||
<File>
|
<File>
|
||||||
<FileName>_triangle_alpha_15x8.c</FileName>
|
<FileName>_triangle_alpha_14x8.c</FileName>
|
||||||
<FileType>1</FileType>
|
<FileType>1</FileType>
|
||||||
<FilePath>..\LVGL\myGUI\generated\images\_triangle_alpha_15x8.c</FilePath>
|
<FilePath>..\LVGL\myGUI\generated\images\_triangle_alpha_14x8.c</FilePath>
|
||||||
</File>
|
</File>
|
||||||
<File>
|
<File>
|
||||||
<FileName>_W_MOK_dot_alpha_8x30.c</FileName>
|
<FileName>_W_MOK_dot_alpha_8x30.c</FileName>
|
||||||
|
@ -2635,69 +2635,69 @@
|
||||||
<FilePath>..\LVGL\myGUI\generated\images\_W_MOK_dot_alpha_8x30.c</FilePath>
|
<FilePath>..\LVGL\myGUI\generated\images\_W_MOK_dot_alpha_8x30.c</FilePath>
|
||||||
</File>
|
</File>
|
||||||
<File>
|
<File>
|
||||||
<FileName>screen_main_ani_out_6W_MOK_0.c</FileName>
|
<FileName>screen_main_ani_in_6W_MOK_0.c</FileName>
|
||||||
<FileType>1</FileType>
|
<FileType>1</FileType>
|
||||||
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_out_6W_MOK_0.c</FilePath>
|
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_0.c</FilePath>
|
||||||
</File>
|
</File>
|
||||||
<File>
|
<File>
|
||||||
<FileName>screen_main_ani_out_6W_MOK_1.c</FileName>
|
<FileName>screen_main_ani_in_6W_MOK_1.c</FileName>
|
||||||
<FileType>1</FileType>
|
<FileType>1</FileType>
|
||||||
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_out_6W_MOK_1.c</FilePath>
|
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_1.c</FilePath>
|
||||||
</File>
|
</File>
|
||||||
<File>
|
<File>
|
||||||
<FileName>screen_main_ani_out_6W_MOK_2.c</FileName>
|
<FileName>screen_main_ani_in_6W_MOK_2.c</FileName>
|
||||||
<FileType>1</FileType>
|
<FileType>1</FileType>
|
||||||
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_out_6W_MOK_2.c</FilePath>
|
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_2.c</FilePath>
|
||||||
</File>
|
</File>
|
||||||
<File>
|
<File>
|
||||||
<FileName>screen_main_ani_out_6W_MOK_3.c</FileName>
|
<FileName>screen_main_ani_in_6W_MOK_3.c</FileName>
|
||||||
<FileType>1</FileType>
|
<FileType>1</FileType>
|
||||||
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_out_6W_MOK_3.c</FilePath>
|
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_3.c</FilePath>
|
||||||
</File>
|
</File>
|
||||||
<File>
|
<File>
|
||||||
<FileName>screen_main_ani_out_6W_MOK_4.c</FileName>
|
<FileName>screen_main_ani_in_6W_MOK_4.c</FileName>
|
||||||
<FileType>1</FileType>
|
<FileType>1</FileType>
|
||||||
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_out_6W_MOK_4.c</FilePath>
|
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_4.c</FilePath>
|
||||||
</File>
|
</File>
|
||||||
<File>
|
<File>
|
||||||
<FileName>screen_main_ani_out_6W_MOK_5.c</FileName>
|
<FileName>screen_main_ani_in_6W_MOK_5.c</FileName>
|
||||||
<FileType>1</FileType>
|
<FileType>1</FileType>
|
||||||
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_out_6W_MOK_5.c</FilePath>
|
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_5.c</FilePath>
|
||||||
</File>
|
</File>
|
||||||
<File>
|
<File>
|
||||||
<FileName>screen_main_ani_out_6W_MOK_6.c</FileName>
|
<FileName>screen_main_ani_in_6W_MOK_6.c</FileName>
|
||||||
<FileType>1</FileType>
|
<FileType>1</FileType>
|
||||||
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_out_6W_MOK_6.c</FilePath>
|
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_6.c</FilePath>
|
||||||
</File>
|
</File>
|
||||||
<File>
|
<File>
|
||||||
<FileName>screen_main_ani_out_6W_MOK_7.c</FileName>
|
<FileName>screen_main_ani_in_6W_MOK_7.c</FileName>
|
||||||
<FileType>1</FileType>
|
<FileType>1</FileType>
|
||||||
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_out_6W_MOK_7.c</FilePath>
|
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_7.c</FilePath>
|
||||||
</File>
|
</File>
|
||||||
<File>
|
<File>
|
||||||
<FileName>screen_main_ani_out_6W_MOK_8.c</FileName>
|
<FileName>screen_main_ani_in_6W_MOK_8.c</FileName>
|
||||||
<FileType>1</FileType>
|
<FileType>1</FileType>
|
||||||
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_out_6W_MOK_8.c</FilePath>
|
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_8.c</FilePath>
|
||||||
</File>
|
</File>
|
||||||
<File>
|
<File>
|
||||||
<FileName>screen_main_ani_out_6W_MOK_9.c</FileName>
|
<FileName>screen_main_ani_in_6W_MOK_9.c</FileName>
|
||||||
<FileType>1</FileType>
|
<FileType>1</FileType>
|
||||||
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_out_6W_MOK_9.c</FilePath>
|
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_9.c</FilePath>
|
||||||
</File>
|
</File>
|
||||||
<File>
|
<File>
|
||||||
<FileName>screen_main_ani_out_6W_MOK_null.c</FileName>
|
<FileName>screen_main_ani_in_6W_MOK_null.c</FileName>
|
||||||
<FileType>1</FileType>
|
<FileType>1</FileType>
|
||||||
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_out_6W_MOK_null.c</FilePath>
|
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_null.c</FilePath>
|
||||||
</File>
|
</File>
|
||||||
<File>
|
<File>
|
||||||
<FileName>screen_main_ani_out_signW_MOK_minus.c</FileName>
|
<FileName>screen_main_ani_in_signW_MOK_minus.c</FileName>
|
||||||
<FileType>1</FileType>
|
<FileType>1</FileType>
|
||||||
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_out_signW_MOK_minus.c</FilePath>
|
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_in_signW_MOK_minus.c</FilePath>
|
||||||
</File>
|
</File>
|
||||||
<File>
|
<File>
|
||||||
<FileName>screen_main_ani_out_signW_MOK_plus.c</FileName>
|
<FileName>screen_main_ani_in_signW_MOK_plus.c</FileName>
|
||||||
<FileType>1</FileType>
|
<FileType>1</FileType>
|
||||||
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_out_signW_MOK_plus.c</FilePath>
|
<FilePath>..\LVGL\myGUI\generated\images\screen_main_ani_in_signW_MOK_plus.c</FilePath>
|
||||||
</File>
|
</File>
|
||||||
<File>
|
<File>
|
||||||
<FileName>screen_main_animimg_batterybt0.c</FileName>
|
<FileName>screen_main_animimg_batterybt0.c</FileName>
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue