/* * Copyright 2026 NXP * NXP Proprietary. This software is owned or controlled by NXP and may only be used strictly in * accordance with the applicable license terms. By expressly accepting such terms or by downloading, installing, * activating and/or otherwise using the software, you are agreeing that you have read, and that you agree to * comply with and are bound by, such license terms. If you do not agree to be bound by the applicable license * terms, then you may not retain, install, activate or otherwise use the software. */ #include "lvgl.h" #include #include "gui_guider.h" #include "events_init.h" #include "widgets_init.h" #include "custom.h" void setup_scr_screen(lv_ui *ui) { //Write codes screen ui->screen = lv_obj_create(NULL); lv_obj_set_size(ui->screen, 1024, 600); lv_obj_set_scrollbar_mode(ui->screen, LV_SCROLLBAR_MODE_OFF); //Write style for screen, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_bg_opa(ui->screen, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_TITLE ui->screen_TITLE = lv_obj_create(ui->screen); lv_obj_set_pos(ui->screen_TITLE, 0, 0); lv_obj_set_size(ui->screen_TITLE, 1024, 50); lv_obj_set_scrollbar_mode(ui->screen_TITLE, LV_SCROLLBAR_MODE_OFF); //Write style for screen_TITLE, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_TITLE, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_TITLE, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_TITLE, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_TITLE, lv_color_hex(0xcccccc), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_TITLE, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_TITLE, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_TITLE, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_TITLE, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_TITLE, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_TITLE, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_inf_l ui->screen_inf_l = lv_img_create(ui->screen_TITLE); lv_obj_add_flag(ui->screen_inf_l, LV_OBJ_FLAG_CLICKABLE); lv_img_set_src(ui->screen_inf_l, &_ico_water_alpha_40x40); lv_img_set_pivot(ui->screen_inf_l, 40,40); lv_img_set_angle(ui->screen_inf_l, 0); lv_obj_set_pos(ui->screen_inf_l, 135, 5); lv_obj_set_size(ui->screen_inf_l, 40, 40); //Write style for screen_inf_l, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_img_recolor_opa(ui->screen_inf_l, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_img_opa(ui->screen_inf_l, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_inf_l, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_clip_corner(ui->screen_inf_l, true, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_inf_t ui->screen_inf_t = lv_img_create(ui->screen_TITLE); lv_obj_add_flag(ui->screen_inf_t, LV_OBJ_FLAG_CLICKABLE); lv_img_set_src(ui->screen_inf_t, &_ico_temp_alpha_40x40); lv_img_set_pivot(ui->screen_inf_t, 50,50); lv_img_set_angle(ui->screen_inf_t, 0); lv_obj_set_pos(ui->screen_inf_t, 5, 5); lv_obj_set_size(ui->screen_inf_t, 40, 40); //Write style for screen_inf_t, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_img_recolor_opa(ui->screen_inf_t, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_img_opa(ui->screen_inf_t, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_inf_t, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_clip_corner(ui->screen_inf_t, true, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_inf_img ui->screen_inf_img = lv_img_create(ui->screen_TITLE); lv_obj_add_flag(ui->screen_inf_img, LV_OBJ_FLAG_CLICKABLE); lv_img_set_src(ui->screen_inf_img, &_ico_order_alpha_40x40); lv_img_set_pivot(ui->screen_inf_img, 40,40); lv_img_set_angle(ui->screen_inf_img, 0); lv_obj_set_pos(ui->screen_inf_img, 350, 5); lv_obj_set_size(ui->screen_inf_img, 40, 40); //Write style for screen_inf_img, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_img_recolor_opa(ui->screen_inf_img, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_img_opa(ui->screen_inf_img, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_inf_img, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_clip_corner(ui->screen_inf_img, true, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_inf_lock ui->screen_inf_lock = lv_img_create(ui->screen_TITLE); lv_obj_add_flag(ui->screen_inf_lock, LV_OBJ_FLAG_CLICKABLE); lv_img_set_src(ui->screen_inf_lock, &_IconParkLock_alpha_40x40); lv_img_set_pivot(ui->screen_inf_lock, 40,40); lv_img_set_angle(ui->screen_inf_lock, 0); lv_obj_set_pos(ui->screen_inf_lock, 750, 5); lv_obj_set_size(ui->screen_inf_lock, 40, 40); //Write style for screen_inf_lock, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_img_recolor_opa(ui->screen_inf_lock, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_img_opa(ui->screen_inf_lock, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_inf_lock, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_clip_corner(ui->screen_inf_lock, true, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_inf_link ui->screen_inf_link = lv_img_create(ui->screen_TITLE); lv_obj_add_flag(ui->screen_inf_link, LV_OBJ_FLAG_CLICKABLE); lv_img_set_src(ui->screen_inf_link, &_ico_link_alpha_40x40); lv_img_set_pivot(ui->screen_inf_link, 40,40); lv_img_set_angle(ui->screen_inf_link, 0); lv_obj_set_pos(ui->screen_inf_link, 800, 5); lv_obj_set_size(ui->screen_inf_link, 40, 40); //Write style for screen_inf_link, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_img_recolor_opa(ui->screen_inf_link, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_img_opa(ui->screen_inf_link, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_inf_link, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_clip_corner(ui->screen_inf_link, true, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_inf_run ui->screen_inf_run = lv_img_create(ui->screen_TITLE); lv_obj_add_flag(ui->screen_inf_run, LV_OBJ_FLAG_CLICKABLE); lv_img_set_src(ui->screen_inf_run, &_IconParkPlay_alpha_40x40); lv_img_set_pivot(ui->screen_inf_run, 40,40); lv_img_set_angle(ui->screen_inf_run, 0); lv_obj_set_pos(ui->screen_inf_run, 850, 5); lv_obj_set_size(ui->screen_inf_run, 40, 40); //Write style for screen_inf_run, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_img_recolor_opa(ui->screen_inf_run, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_img_opa(ui->screen_inf_run, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_inf_run, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_clip_corner(ui->screen_inf_run, true, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_temp ui->screen_temp = lv_label_create(ui->screen_TITLE); lv_label_set_text(ui->screen_temp, "020.5"); lv_label_set_long_mode(ui->screen_temp, LV_LABEL_LONG_CLIP); lv_obj_set_pos(ui->screen_temp, 50, 10); lv_obj_set_size(ui->screen_temp, 75, 25); //Write style for screen_temp, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_temp, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_temp, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_temp, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_temp, &lv_font_montserratMedium_28, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_temp, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_temp, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_temp, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_temp, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_temp, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_temp, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_temp, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_temp, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_temp, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_temp, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_water ui->screen_water = lv_label_create(ui->screen_TITLE); lv_label_set_text(ui->screen_water, "9999"); lv_label_set_long_mode(ui->screen_water, LV_LABEL_LONG_CLIP); lv_obj_set_pos(ui->screen_water, 180, 10); lv_obj_set_size(ui->screen_water, 90, 25); //Write style for screen_water, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_water, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_water, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_water, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_water, &lv_font_montserratMedium_28, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_water, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_water, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_water, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_water, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_water, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_water, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_water, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_water, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_water, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_water, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_order ui->screen_order = lv_label_create(ui->screen_TITLE); lv_label_set_text(ui->screen_order, "SC---------"); lv_label_set_long_mode(ui->screen_order, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_order, 400, 10); lv_obj_set_size(ui->screen_order, 200, 30); //Write style for screen_order, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_order, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_order, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_order, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_order, &lv_font_simsun_30, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_order, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_order, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_order, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_order, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_order, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_order, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_order, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_order, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_order, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_order, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_SYS_TIME ui->screen_SYS_TIME = lv_label_create(ui->screen_TITLE); lv_label_set_text(ui->screen_SYS_TIME, "12:12:30"); lv_label_set_long_mode(ui->screen_SYS_TIME, LV_LABEL_LONG_WRAP); lv_obj_set_pos(ui->screen_SYS_TIME, 900, 5); lv_obj_set_size(ui->screen_SYS_TIME, 100, 15); //Write style for screen_SYS_TIME, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_SYS_TIME, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_SYS_TIME, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_SYS_TIME, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_SYS_TIME, &lv_font_montserratMedium_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_SYS_TIME, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_SYS_TIME, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_SYS_TIME, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_SYS_TIME, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_SYS_TIME, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_SYS_TIME, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_SYS_TIME, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_SYS_TIME, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_SYS_TIME, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_SYS_TIME, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_RUN_TIME ui->screen_RUN_TIME = lv_label_create(ui->screen_TITLE); lv_label_set_text(ui->screen_RUN_TIME, "00:00:00"); lv_label_set_long_mode(ui->screen_RUN_TIME, LV_LABEL_LONG_WRAP); lv_obj_set_pos(ui->screen_RUN_TIME, 900, 28); lv_obj_set_size(ui->screen_RUN_TIME, 100, 15); //Write style for screen_RUN_TIME, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_RUN_TIME, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_RUN_TIME, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_RUN_TIME, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_RUN_TIME, &lv_font_montserratMedium_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_RUN_TIME, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_RUN_TIME, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_RUN_TIME, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_RUN_TIME, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_RUN_TIME, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_RUN_TIME, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_RUN_TIME, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_RUN_TIME, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_RUN_TIME, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_RUN_TIME, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_tabview ui->screen_tabview = lv_tabview_create(ui->screen, LV_DIR_BOTTOM, 50); lv_obj_set_pos(ui->screen_tabview, 0, 50); lv_obj_set_size(ui->screen_tabview, 1024, 550); lv_obj_set_scrollbar_mode(ui->screen_tabview, LV_SCROLLBAR_MODE_OFF); //Write style for screen_tabview, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_bg_opa(ui->screen_tabview, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_tabview, lv_color_hex(0xeaeff3), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_tabview, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_tabview, lv_color_hex(0x4d4d4d), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_tabview, &lv_font_simsun_24, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_tabview, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_tabview, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_tabview, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_tabview, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_tabview, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_tabview, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write style state: LV_STATE_DEFAULT for &style_screen_tabview_extra_btnm_main_default static lv_style_t style_screen_tabview_extra_btnm_main_default; ui_init_style(&style_screen_tabview_extra_btnm_main_default); lv_style_set_bg_opa(&style_screen_tabview_extra_btnm_main_default, 255); lv_style_set_bg_color(&style_screen_tabview_extra_btnm_main_default, lv_color_hex(0xffffff)); lv_style_set_bg_grad_dir(&style_screen_tabview_extra_btnm_main_default, LV_GRAD_DIR_NONE); lv_style_set_border_width(&style_screen_tabview_extra_btnm_main_default, 0); lv_style_set_radius(&style_screen_tabview_extra_btnm_main_default, 0); lv_obj_add_style(lv_tabview_get_tab_btns(ui->screen_tabview), &style_screen_tabview_extra_btnm_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); //Write style state: LV_STATE_DEFAULT for &style_screen_tabview_extra_btnm_items_default static lv_style_t style_screen_tabview_extra_btnm_items_default; ui_init_style(&style_screen_tabview_extra_btnm_items_default); lv_style_set_text_color(&style_screen_tabview_extra_btnm_items_default, lv_color_hex(0x4d4d4d)); lv_style_set_text_font(&style_screen_tabview_extra_btnm_items_default, &lv_font_simsun_12); lv_style_set_text_opa(&style_screen_tabview_extra_btnm_items_default, 255); lv_obj_add_style(lv_tabview_get_tab_btns(ui->screen_tabview), &style_screen_tabview_extra_btnm_items_default, LV_PART_ITEMS|LV_STATE_DEFAULT); //Write style state: LV_STATE_CHECKED for &style_screen_tabview_extra_btnm_items_checked static lv_style_t style_screen_tabview_extra_btnm_items_checked; ui_init_style(&style_screen_tabview_extra_btnm_items_checked); lv_style_set_text_color(&style_screen_tabview_extra_btnm_items_checked, lv_color_hex(0x2195f6)); lv_style_set_text_font(&style_screen_tabview_extra_btnm_items_checked, &lv_font_montserratMedium_12); lv_style_set_text_opa(&style_screen_tabview_extra_btnm_items_checked, 255); lv_style_set_border_width(&style_screen_tabview_extra_btnm_items_checked, 4); lv_style_set_border_opa(&style_screen_tabview_extra_btnm_items_checked, 255); lv_style_set_border_color(&style_screen_tabview_extra_btnm_items_checked, lv_color_hex(0x2195f6)); lv_style_set_border_side(&style_screen_tabview_extra_btnm_items_checked, LV_BORDER_SIDE_BOTTOM); lv_style_set_radius(&style_screen_tabview_extra_btnm_items_checked, 0); lv_style_set_bg_opa(&style_screen_tabview_extra_btnm_items_checked, 60); lv_style_set_bg_color(&style_screen_tabview_extra_btnm_items_checked, lv_color_hex(0x2195f6)); lv_style_set_bg_grad_dir(&style_screen_tabview_extra_btnm_items_checked, LV_GRAD_DIR_NONE); lv_obj_add_style(lv_tabview_get_tab_btns(ui->screen_tabview), &style_screen_tabview_extra_btnm_items_checked, LV_PART_ITEMS|LV_STATE_CHECKED); //Write codes 工单 ui->screen_tabview_tab_1 = lv_tabview_add_tab(ui->screen_tabview,"工单"); lv_obj_t * screen_tabview_tab_1_label = lv_label_create(ui->screen_tabview_tab_1); lv_label_set_text(screen_tabview_tab_1_label, ""); //Write codes screen_w_start ui->screen_w_start = lv_btn_create(ui->screen_tabview_tab_1); ui->screen_w_start_label = lv_label_create(ui->screen_w_start); lv_label_set_text(ui->screen_w_start_label, "载入"); lv_label_set_long_mode(ui->screen_w_start_label, LV_LABEL_LONG_WRAP); lv_obj_align(ui->screen_w_start_label, LV_ALIGN_CENTER, 0, 0); lv_obj_set_style_pad_all(ui->screen_w_start, 0, LV_STATE_DEFAULT); lv_obj_set_width(ui->screen_w_start_label, LV_PCT(100)); lv_obj_set_pos(ui->screen_w_start, 880, 410); lv_obj_set_size(ui->screen_w_start, 100, 50); //Write style for screen_w_start, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_bg_opa(ui->screen_w_start, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_w_start, lv_color_hex(0x2195f6), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_w_start, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_w_start, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_w_start, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_w_start, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_w_start, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_w_start, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_w_start, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_w_start, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_w_edit ui->screen_w_edit = lv_btn_create(ui->screen_tabview_tab_1); ui->screen_w_edit_label = lv_label_create(ui->screen_w_edit); lv_label_set_text(ui->screen_w_edit_label, "编辑"); lv_label_set_long_mode(ui->screen_w_edit_label, LV_LABEL_LONG_WRAP); lv_obj_align(ui->screen_w_edit_label, LV_ALIGN_CENTER, 0, 0); lv_obj_set_style_pad_all(ui->screen_w_edit, 0, LV_STATE_DEFAULT); lv_obj_set_width(ui->screen_w_edit_label, LV_PCT(100)); lv_obj_set_pos(ui->screen_w_edit, 881, 345); lv_obj_set_size(ui->screen_w_edit, 100, 50); //Write style for screen_w_edit, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_bg_opa(ui->screen_w_edit, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_w_edit, lv_color_hex(0x2195f6), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_w_edit, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_w_edit, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_w_edit, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_w_edit, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_w_edit, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_w_edit, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_w_edit, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_w_edit, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_w_list ui->screen_w_list = lv_list_create(ui->screen_tabview_tab_1); ui->screen_w_list_item0 = lv_list_add_btn(ui->screen_w_list, LV_SYMBOL_SAVE, "save"); lv_obj_set_pos(ui->screen_w_list, 0, 0); lv_obj_set_size(ui->screen_w_list, 300, 460); lv_obj_set_scrollbar_mode(ui->screen_w_list, LV_SCROLLBAR_MODE_ACTIVE); //Write style state: LV_STATE_DEFAULT for &style_screen_w_list_main_main_default static lv_style_t style_screen_w_list_main_main_default; ui_init_style(&style_screen_w_list_main_main_default); lv_style_set_pad_top(&style_screen_w_list_main_main_default, 0); lv_style_set_pad_left(&style_screen_w_list_main_main_default, 0); lv_style_set_pad_right(&style_screen_w_list_main_main_default, 0); lv_style_set_pad_bottom(&style_screen_w_list_main_main_default, 0); lv_style_set_bg_opa(&style_screen_w_list_main_main_default, 255); lv_style_set_bg_color(&style_screen_w_list_main_main_default, lv_color_hex(0xffffff)); lv_style_set_bg_grad_dir(&style_screen_w_list_main_main_default, LV_GRAD_DIR_NONE); lv_style_set_border_width(&style_screen_w_list_main_main_default, 1); lv_style_set_border_opa(&style_screen_w_list_main_main_default, 255); lv_style_set_border_color(&style_screen_w_list_main_main_default, lv_color_hex(0xe1e6ee)); lv_style_set_border_side(&style_screen_w_list_main_main_default, LV_BORDER_SIDE_FULL); lv_style_set_radius(&style_screen_w_list_main_main_default, 3); lv_style_set_shadow_width(&style_screen_w_list_main_main_default, 0); lv_obj_add_style(ui->screen_w_list, &style_screen_w_list_main_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); //Write style state: LV_STATE_DEFAULT for &style_screen_w_list_main_scrollbar_default static lv_style_t style_screen_w_list_main_scrollbar_default; ui_init_style(&style_screen_w_list_main_scrollbar_default); lv_style_set_radius(&style_screen_w_list_main_scrollbar_default, 3); lv_style_set_bg_opa(&style_screen_w_list_main_scrollbar_default, 255); lv_style_set_bg_color(&style_screen_w_list_main_scrollbar_default, lv_color_hex(0xb0c7cf)); lv_style_set_bg_grad_dir(&style_screen_w_list_main_scrollbar_default, LV_GRAD_DIR_NONE); lv_obj_add_style(ui->screen_w_list, &style_screen_w_list_main_scrollbar_default, LV_PART_SCROLLBAR|LV_STATE_DEFAULT); //Write style state: LV_STATE_DEFAULT for &style_screen_w_list_extra_btns_main_default static lv_style_t style_screen_w_list_extra_btns_main_default; ui_init_style(&style_screen_w_list_extra_btns_main_default); lv_style_set_pad_top(&style_screen_w_list_extra_btns_main_default, 5); lv_style_set_pad_left(&style_screen_w_list_extra_btns_main_default, 14); lv_style_set_pad_right(&style_screen_w_list_extra_btns_main_default, 0); lv_style_set_pad_bottom(&style_screen_w_list_extra_btns_main_default, 3); lv_style_set_border_width(&style_screen_w_list_extra_btns_main_default, 0); lv_style_set_text_color(&style_screen_w_list_extra_btns_main_default, lv_color_hex(0x0D3055)); lv_style_set_text_font(&style_screen_w_list_extra_btns_main_default, &lv_font_montserratMedium_15); lv_style_set_text_opa(&style_screen_w_list_extra_btns_main_default, 255); lv_style_set_radius(&style_screen_w_list_extra_btns_main_default, 0); lv_style_set_bg_opa(&style_screen_w_list_extra_btns_main_default, 0); lv_obj_add_style(ui->screen_w_list_item0, &style_screen_w_list_extra_btns_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); //Write style state: LV_STATE_DEFAULT for &style_screen_w_list_extra_texts_main_default static lv_style_t style_screen_w_list_extra_texts_main_default; ui_init_style(&style_screen_w_list_extra_texts_main_default); lv_style_set_pad_top(&style_screen_w_list_extra_texts_main_default, 5); lv_style_set_pad_left(&style_screen_w_list_extra_texts_main_default, 0); lv_style_set_pad_right(&style_screen_w_list_extra_texts_main_default, 0); lv_style_set_pad_bottom(&style_screen_w_list_extra_texts_main_default, 0); lv_style_set_border_width(&style_screen_w_list_extra_texts_main_default, 0); lv_style_set_text_color(&style_screen_w_list_extra_texts_main_default, lv_color_hex(0x0D3055)); lv_style_set_text_font(&style_screen_w_list_extra_texts_main_default, &lv_font_Alatsi_Regular_20); lv_style_set_text_opa(&style_screen_w_list_extra_texts_main_default, 255); lv_style_set_radius(&style_screen_w_list_extra_texts_main_default, 3); lv_style_set_transform_width(&style_screen_w_list_extra_texts_main_default, 0); lv_style_set_bg_opa(&style_screen_w_list_extra_texts_main_default, 0); //Write codes screen_w_w ui->screen_w_w = lv_btn_create(ui->screen_tabview_tab_1); ui->screen_w_w_label = lv_label_create(ui->screen_w_w); lv_label_set_text(ui->screen_w_w_label, "工艺"); lv_label_set_long_mode(ui->screen_w_w_label, LV_LABEL_LONG_WRAP); lv_obj_align(ui->screen_w_w_label, LV_ALIGN_CENTER, 0, 0); lv_obj_set_style_pad_all(ui->screen_w_w, 0, LV_STATE_DEFAULT); lv_obj_set_width(ui->screen_w_w_label, LV_PCT(100)); lv_obj_set_pos(ui->screen_w_w, 880, 280); lv_obj_set_size(ui->screen_w_w, 100, 50); //Write style for screen_w_w, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_bg_opa(ui->screen_w_w, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_w_w, lv_color_hex(0x2195f6), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_w_w, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_w_w, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_w_w, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_w_w, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_w_w, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_w_w, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_w_w, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_w_w, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_w_text ui->screen_w_text = lv_label_create(ui->screen_tabview_tab_1); lv_label_set_text(ui->screen_w_text, "Label"); lv_label_set_long_mode(ui->screen_w_text, LV_LABEL_LONG_WRAP); lv_obj_set_pos(ui->screen_w_text, 305, 265); lv_obj_set_size(ui->screen_w_text, 550, 195); //Write style for screen_w_text, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_w_text, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_w_text, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_w_text, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_w_text, &lv_font_simsun_24, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_w_text, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_w_text, 2, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_w_text, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_w_text, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_w_text, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_w_text, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_w_text, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_w_text, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_w_text, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_w_text, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_w_text, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_w_text, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_list_inf ui->screen_list_inf = lv_list_create(ui->screen_tabview_tab_1); ui->screen_list_inf_item0 = lv_list_add_btn(ui->screen_list_inf, LV_SYMBOL_SAVE, "save"); lv_obj_set_pos(ui->screen_list_inf, 305, 0); lv_obj_set_size(ui->screen_list_inf, 675, 260); lv_obj_set_scrollbar_mode(ui->screen_list_inf, LV_SCROLLBAR_MODE_ACTIVE); //Write style state: LV_STATE_DEFAULT for &style_screen_list_inf_main_main_default static lv_style_t style_screen_list_inf_main_main_default; ui_init_style(&style_screen_list_inf_main_main_default); lv_style_set_pad_top(&style_screen_list_inf_main_main_default, 0); lv_style_set_pad_left(&style_screen_list_inf_main_main_default, 0); lv_style_set_pad_right(&style_screen_list_inf_main_main_default, 0); lv_style_set_pad_bottom(&style_screen_list_inf_main_main_default, 0); lv_style_set_bg_opa(&style_screen_list_inf_main_main_default, 255); lv_style_set_bg_color(&style_screen_list_inf_main_main_default, lv_color_hex(0xffffff)); lv_style_set_bg_grad_dir(&style_screen_list_inf_main_main_default, LV_GRAD_DIR_NONE); lv_style_set_border_width(&style_screen_list_inf_main_main_default, 1); lv_style_set_border_opa(&style_screen_list_inf_main_main_default, 255); lv_style_set_border_color(&style_screen_list_inf_main_main_default, lv_color_hex(0xe1e6ee)); lv_style_set_border_side(&style_screen_list_inf_main_main_default, LV_BORDER_SIDE_FULL); lv_style_set_radius(&style_screen_list_inf_main_main_default, 3); lv_style_set_shadow_width(&style_screen_list_inf_main_main_default, 0); lv_obj_add_style(ui->screen_list_inf, &style_screen_list_inf_main_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); //Write style state: LV_STATE_DEFAULT for &style_screen_list_inf_main_scrollbar_default static lv_style_t style_screen_list_inf_main_scrollbar_default; ui_init_style(&style_screen_list_inf_main_scrollbar_default); lv_style_set_radius(&style_screen_list_inf_main_scrollbar_default, 3); lv_style_set_bg_opa(&style_screen_list_inf_main_scrollbar_default, 255); lv_style_set_bg_color(&style_screen_list_inf_main_scrollbar_default, lv_color_hex(0xb0c7cf)); lv_style_set_bg_grad_dir(&style_screen_list_inf_main_scrollbar_default, LV_GRAD_DIR_NONE); lv_obj_add_style(ui->screen_list_inf, &style_screen_list_inf_main_scrollbar_default, LV_PART_SCROLLBAR|LV_STATE_DEFAULT); //Write style state: LV_STATE_DEFAULT for &style_screen_list_inf_extra_btns_main_default static lv_style_t style_screen_list_inf_extra_btns_main_default; ui_init_style(&style_screen_list_inf_extra_btns_main_default); lv_style_set_pad_top(&style_screen_list_inf_extra_btns_main_default, 5); lv_style_set_pad_left(&style_screen_list_inf_extra_btns_main_default, 14); lv_style_set_pad_right(&style_screen_list_inf_extra_btns_main_default, 0); lv_style_set_pad_bottom(&style_screen_list_inf_extra_btns_main_default, 3); lv_style_set_border_width(&style_screen_list_inf_extra_btns_main_default, 0); lv_style_set_text_color(&style_screen_list_inf_extra_btns_main_default, lv_color_hex(0x0D3055)); lv_style_set_text_font(&style_screen_list_inf_extra_btns_main_default, &lv_font_montserratMedium_15); lv_style_set_text_opa(&style_screen_list_inf_extra_btns_main_default, 255); lv_style_set_radius(&style_screen_list_inf_extra_btns_main_default, 0); lv_style_set_bg_opa(&style_screen_list_inf_extra_btns_main_default, 0); lv_obj_add_style(ui->screen_list_inf_item0, &style_screen_list_inf_extra_btns_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); //Write style state: LV_STATE_DEFAULT for &style_screen_list_inf_extra_texts_main_default static lv_style_t style_screen_list_inf_extra_texts_main_default; ui_init_style(&style_screen_list_inf_extra_texts_main_default); lv_style_set_pad_top(&style_screen_list_inf_extra_texts_main_default, 5); lv_style_set_pad_left(&style_screen_list_inf_extra_texts_main_default, 0); lv_style_set_pad_right(&style_screen_list_inf_extra_texts_main_default, 0); lv_style_set_pad_bottom(&style_screen_list_inf_extra_texts_main_default, 0); lv_style_set_border_width(&style_screen_list_inf_extra_texts_main_default, 0); lv_style_set_text_color(&style_screen_list_inf_extra_texts_main_default, lv_color_hex(0x0D3055)); lv_style_set_text_font(&style_screen_list_inf_extra_texts_main_default, &lv_font_Alatsi_Regular_20); lv_style_set_text_opa(&style_screen_list_inf_extra_texts_main_default, 255); lv_style_set_radius(&style_screen_list_inf_extra_texts_main_default, 3); lv_style_set_transform_width(&style_screen_list_inf_extra_texts_main_default, 0); lv_style_set_bg_opa(&style_screen_list_inf_extra_texts_main_default, 0); //Write codes 工艺 ui->screen_tabview_tab_2 = lv_tabview_add_tab(ui->screen_tabview,"工艺"); lv_obj_t * screen_tabview_tab_2_label = lv_label_create(ui->screen_tabview_tab_2); lv_label_set_text(screen_tabview_tab_2_label, ""); //Write codes screen_p_p ui->screen_p_p = lv_list_create(ui->screen_tabview_tab_2); ui->screen_p_p_item0 =lv_list_add_text(ui->screen_p_p, "save_1"); ui->screen_p_p_item1 =lv_list_add_text(ui->screen_p_p, "save_2"); ui->screen_p_p_item2 =lv_list_add_text(ui->screen_p_p, "save_3"); ui->screen_p_p_item3 =lv_list_add_text(ui->screen_p_p, "save_4"); ui->screen_p_p_item4 =lv_list_add_text(ui->screen_p_p, "save_5"); ui->screen_p_p_item5 =lv_list_add_text(ui->screen_p_p, "save_6"); ui->screen_p_p_item6 =lv_list_add_text(ui->screen_p_p, "save_7"); ui->screen_p_p_item7 =lv_list_add_text(ui->screen_p_p, "save_8"); ui->screen_p_p_item8 =lv_list_add_text(ui->screen_p_p, "save_9"); ui->screen_p_p_item9 =lv_list_add_text(ui->screen_p_p, "save_10"); ui->screen_p_p_item10 =lv_list_add_text(ui->screen_p_p, "save_11"); ui->screen_p_p_item11 =lv_list_add_text(ui->screen_p_p, "save_12"); ui->screen_p_p_item12 =lv_list_add_text(ui->screen_p_p, "save_13"); ui->screen_p_p_item13 =lv_list_add_text(ui->screen_p_p, "save_14"); ui->screen_p_p_item14 =lv_list_add_text(ui->screen_p_p, "save_15"); lv_obj_set_pos(ui->screen_p_p, 0, 65); lv_obj_set_size(ui->screen_p_p, 450, 335); lv_obj_set_scrollbar_mode(ui->screen_p_p, LV_SCROLLBAR_MODE_ACTIVE); //Write style state: LV_STATE_DEFAULT for &style_screen_p_p_main_main_default static lv_style_t style_screen_p_p_main_main_default; ui_init_style(&style_screen_p_p_main_main_default); lv_style_set_pad_top(&style_screen_p_p_main_main_default, 5); lv_style_set_pad_left(&style_screen_p_p_main_main_default, 5); lv_style_set_pad_right(&style_screen_p_p_main_main_default, 5); lv_style_set_pad_bottom(&style_screen_p_p_main_main_default, 5); lv_style_set_bg_opa(&style_screen_p_p_main_main_default, 255); lv_style_set_bg_color(&style_screen_p_p_main_main_default, lv_color_hex(0xffffff)); lv_style_set_bg_grad_dir(&style_screen_p_p_main_main_default, LV_GRAD_DIR_NONE); lv_style_set_border_width(&style_screen_p_p_main_main_default, 1); lv_style_set_border_opa(&style_screen_p_p_main_main_default, 255); lv_style_set_border_color(&style_screen_p_p_main_main_default, lv_color_hex(0xe1e6ee)); lv_style_set_border_side(&style_screen_p_p_main_main_default, LV_BORDER_SIDE_NONE); lv_style_set_radius(&style_screen_p_p_main_main_default, 3); lv_style_set_shadow_width(&style_screen_p_p_main_main_default, 0); lv_obj_add_style(ui->screen_p_p, &style_screen_p_p_main_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); //Write style state: LV_STATE_DEFAULT for &style_screen_p_p_main_scrollbar_default static lv_style_t style_screen_p_p_main_scrollbar_default; ui_init_style(&style_screen_p_p_main_scrollbar_default); lv_style_set_radius(&style_screen_p_p_main_scrollbar_default, 3); lv_style_set_bg_opa(&style_screen_p_p_main_scrollbar_default, 255); lv_style_set_bg_color(&style_screen_p_p_main_scrollbar_default, lv_color_hex(0xffffff)); lv_style_set_bg_grad_dir(&style_screen_p_p_main_scrollbar_default, LV_GRAD_DIR_NONE); lv_obj_add_style(ui->screen_p_p, &style_screen_p_p_main_scrollbar_default, LV_PART_SCROLLBAR|LV_STATE_DEFAULT); //Write style state: LV_STATE_DEFAULT for &style_screen_p_p_extra_btns_main_default static lv_style_t style_screen_p_p_extra_btns_main_default; ui_init_style(&style_screen_p_p_extra_btns_main_default); lv_style_set_pad_top(&style_screen_p_p_extra_btns_main_default, 5); lv_style_set_pad_left(&style_screen_p_p_extra_btns_main_default, 5); lv_style_set_pad_right(&style_screen_p_p_extra_btns_main_default, 5); lv_style_set_pad_bottom(&style_screen_p_p_extra_btns_main_default, 5); lv_style_set_border_width(&style_screen_p_p_extra_btns_main_default, 0); lv_style_set_text_color(&style_screen_p_p_extra_btns_main_default, lv_color_hex(0x0D3055)); lv_style_set_text_font(&style_screen_p_p_extra_btns_main_default, &lv_font_montserratMedium_12); lv_style_set_text_opa(&style_screen_p_p_extra_btns_main_default, 255); lv_style_set_radius(&style_screen_p_p_extra_btns_main_default, 3); lv_style_set_bg_opa(&style_screen_p_p_extra_btns_main_default, 255); lv_style_set_bg_color(&style_screen_p_p_extra_btns_main_default, lv_color_hex(0xffffff)); lv_style_set_bg_grad_dir(&style_screen_p_p_extra_btns_main_default, LV_GRAD_DIR_NONE); //Write style state: LV_STATE_DEFAULT for &style_screen_p_p_extra_texts_main_default static lv_style_t style_screen_p_p_extra_texts_main_default; ui_init_style(&style_screen_p_p_extra_texts_main_default); lv_style_set_pad_top(&style_screen_p_p_extra_texts_main_default, 5); lv_style_set_pad_left(&style_screen_p_p_extra_texts_main_default, 5); lv_style_set_pad_right(&style_screen_p_p_extra_texts_main_default, 5); lv_style_set_pad_bottom(&style_screen_p_p_extra_texts_main_default, 5); lv_style_set_border_width(&style_screen_p_p_extra_texts_main_default, 0); lv_style_set_text_color(&style_screen_p_p_extra_texts_main_default, lv_color_hex(0x0D3055)); lv_style_set_text_font(&style_screen_p_p_extra_texts_main_default, &lv_font_simsun_21); lv_style_set_text_opa(&style_screen_p_p_extra_texts_main_default, 255); lv_style_set_radius(&style_screen_p_p_extra_texts_main_default, 3); lv_style_set_transform_width(&style_screen_p_p_extra_texts_main_default, 0); lv_style_set_bg_opa(&style_screen_p_p_extra_texts_main_default, 255); lv_style_set_bg_color(&style_screen_p_p_extra_texts_main_default, lv_color_hex(0xffffff)); lv_style_set_bg_grad_dir(&style_screen_p_p_extra_texts_main_default, LV_GRAD_DIR_NONE); lv_obj_add_style(ui->screen_p_p_item14, &style_screen_p_p_extra_texts_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_add_style(ui->screen_p_p_item13, &style_screen_p_p_extra_texts_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_add_style(ui->screen_p_p_item12, &style_screen_p_p_extra_texts_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_add_style(ui->screen_p_p_item11, &style_screen_p_p_extra_texts_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_add_style(ui->screen_p_p_item10, &style_screen_p_p_extra_texts_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_add_style(ui->screen_p_p_item9, &style_screen_p_p_extra_texts_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_add_style(ui->screen_p_p_item8, &style_screen_p_p_extra_texts_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_add_style(ui->screen_p_p_item7, &style_screen_p_p_extra_texts_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_add_style(ui->screen_p_p_item6, &style_screen_p_p_extra_texts_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_add_style(ui->screen_p_p_item5, &style_screen_p_p_extra_texts_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_add_style(ui->screen_p_p_item4, &style_screen_p_p_extra_texts_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_add_style(ui->screen_p_p_item3, &style_screen_p_p_extra_texts_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_add_style(ui->screen_p_p_item2, &style_screen_p_p_extra_texts_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_add_style(ui->screen_p_p_item1, &style_screen_p_p_extra_texts_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_add_style(ui->screen_p_p_item0, &style_screen_p_p_extra_texts_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_chart_temp ui->screen_chart_temp = lv_chart_create(ui->screen_tabview_tab_2); lv_chart_set_type(ui->screen_chart_temp, LV_CHART_TYPE_LINE); lv_chart_set_div_line_count(ui->screen_chart_temp, 3, 5); lv_chart_set_point_count(ui->screen_chart_temp, 5); lv_chart_set_range(ui->screen_chart_temp, LV_CHART_AXIS_PRIMARY_Y, 0, 160); lv_chart_set_axis_tick(ui->screen_chart_temp, LV_CHART_AXIS_PRIMARY_Y, 1, 1, 9, 5, true, 40); lv_chart_set_range(ui->screen_chart_temp, LV_CHART_AXIS_SECONDARY_Y, 0, 100); lv_chart_set_axis_tick(ui->screen_chart_temp, LV_CHART_AXIS_PRIMARY_X, 1, 1, 50, 80, false, 40); lv_chart_set_zoom_x(ui->screen_chart_temp, 256); lv_chart_set_zoom_y(ui->screen_chart_temp, 256); lv_obj_set_style_size(ui->screen_chart_temp, 0, LV_PART_INDICATOR); ui->screen_chart_temp_0 = lv_chart_add_series(ui->screen_chart_temp, lv_color_hex(0x000000), LV_CHART_AXIS_PRIMARY_Y); #if LV_USE_FREEMASTER == 0 lv_chart_set_next_value(ui->screen_chart_temp, ui->screen_chart_temp_0, 10); lv_chart_set_next_value(ui->screen_chart_temp, ui->screen_chart_temp_0, 40); lv_chart_set_next_value(ui->screen_chart_temp, ui->screen_chart_temp_0, 80); lv_chart_set_next_value(ui->screen_chart_temp, ui->screen_chart_temp_0, 130); lv_chart_set_next_value(ui->screen_chart_temp, ui->screen_chart_temp_0, 80); #endif lv_obj_set_pos(ui->screen_chart_temp, 490, 0); lv_obj_set_size(ui->screen_chart_temp, 495, 195); lv_obj_set_scrollbar_mode(ui->screen_chart_temp, LV_SCROLLBAR_MODE_OFF); //Write style for screen_chart_temp, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_bg_opa(ui->screen_chart_temp, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_chart_temp, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_chart_temp, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_chart_temp, 1, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_opa(ui->screen_chart_temp, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_color(ui->screen_chart_temp, lv_color_hex(0xe8e8e8), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_side(ui->screen_chart_temp, LV_BORDER_SIDE_FULL, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_chart_temp, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_line_width(ui->screen_chart_temp, 2, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_line_color(ui->screen_chart_temp, lv_color_hex(0xe8e8e8), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_line_opa(ui->screen_chart_temp, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_chart_temp, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write style for screen_chart_temp, Part: LV_PART_TICKS, State: LV_STATE_DEFAULT. lv_obj_set_style_text_color(ui->screen_chart_temp, lv_color_hex(0x151212), LV_PART_TICKS|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_chart_temp, &lv_font_montserratMedium_12, LV_PART_TICKS|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_chart_temp, 255, LV_PART_TICKS|LV_STATE_DEFAULT); lv_obj_set_style_line_width(ui->screen_chart_temp, 2, LV_PART_TICKS|LV_STATE_DEFAULT); lv_obj_set_style_line_color(ui->screen_chart_temp, lv_color_hex(0xe8e8e8), LV_PART_TICKS|LV_STATE_DEFAULT); lv_obj_set_style_line_opa(ui->screen_chart_temp, 255, LV_PART_TICKS|LV_STATE_DEFAULT); //Write codes screen_step_id ui->screen_step_id = lv_label_create(ui->screen_tabview_tab_2); lv_label_set_text(ui->screen_step_id, "001"); lv_label_set_long_mode(ui->screen_step_id, LV_LABEL_LONG_DOT); lv_obj_set_pos(ui->screen_step_id, 0, 35); lv_obj_set_size(ui->screen_step_id, 50, 25); //Write style for screen_step_id, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_step_id, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_step_id, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_step_id, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_step_id, &lv_font_simsun_24, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_step_id, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_step_id, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_step_id, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_step_id, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_step_id, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_step_id, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_step_id, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_step_id, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_step_id, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_step_id, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_step_id, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_step_id, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_step_inf ui->screen_step_inf = lv_obj_create(ui->screen_tabview_tab_2); lv_obj_set_pos(ui->screen_step_inf, 470, 200); lv_obj_set_size(ui->screen_step_inf, 515, 260); lv_obj_set_scrollbar_mode(ui->screen_step_inf, LV_SCROLLBAR_MODE_ACTIVE); //Write style for screen_step_inf, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_step_inf, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_step_inf, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_step_inf, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_step_inf, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_step_inf, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_step_inf, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_step_inf, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_step_inf, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_step_inf, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_step_inf, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_process ui->screen_process = lv_label_create(ui->screen_tabview_tab_2); lv_label_set_text(ui->screen_process, "工艺"); lv_label_set_long_mode(ui->screen_process, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_process, 0, 0); lv_obj_set_size(ui->screen_process, 450, 30); //Write style for screen_process, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_process, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_process, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_process, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_process, &lv_font_simsun_30, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_process, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_process, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_process, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_process, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_process, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_process, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_process, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_process, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_process, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_process, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_process, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_process, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_step_n ui->screen_step_n = lv_label_create(ui->screen_tabview_tab_2); lv_label_set_text(ui->screen_step_n, "步骤名"); lv_label_set_long_mode(ui->screen_step_n, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_step_n, 60, 35); lv_obj_set_size(ui->screen_step_n, 390, 25); //Write style for screen_step_n, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_step_n, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_step_n, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_step_n, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_step_n, &lv_font_simsun_24, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_step_n, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_step_n, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_step_n, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_step_n, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_step_n, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_step_n, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_step_n, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_step_n, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_step_n, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_step_n, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_step_n, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_step_n, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_p_start ui->screen_p_start = lv_btn_create(ui->screen_tabview_tab_2); ui->screen_p_start_label = lv_label_create(ui->screen_p_start); lv_label_set_text(ui->screen_p_start_label, "启/停"); lv_label_set_long_mode(ui->screen_p_start_label, LV_LABEL_LONG_WRAP); lv_obj_align(ui->screen_p_start_label, LV_ALIGN_CENTER, 0, 0); lv_obj_set_style_pad_all(ui->screen_p_start, 0, LV_STATE_DEFAULT); lv_obj_set_width(ui->screen_p_start_label, LV_PCT(100)); lv_obj_set_pos(ui->screen_p_start, 5, 410); lv_obj_set_size(ui->screen_p_start, 100, 50); //Write style for screen_p_start, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_bg_opa(ui->screen_p_start, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_p_start, lv_color_hex(0x2195f6), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_p_start, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_p_start, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_p_start, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_p_start, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_p_start, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_p_start, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_p_start, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_p_start, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_p_edit ui->screen_p_edit = lv_btn_create(ui->screen_tabview_tab_2); ui->screen_p_edit_label = lv_label_create(ui->screen_p_edit); lv_label_set_text(ui->screen_p_edit_label, "编辑"); lv_label_set_long_mode(ui->screen_p_edit_label, LV_LABEL_LONG_WRAP); lv_obj_align(ui->screen_p_edit_label, LV_ALIGN_CENTER, 0, 0); lv_obj_set_style_pad_all(ui->screen_p_edit, 0, LV_STATE_DEFAULT); lv_obj_set_width(ui->screen_p_edit_label, LV_PCT(100)); lv_obj_set_pos(ui->screen_p_edit, 120, 410); lv_obj_set_size(ui->screen_p_edit, 100, 50); //Write style for screen_p_edit, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_bg_opa(ui->screen_p_edit, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_p_edit, lv_color_hex(0x2195f6), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_p_edit, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_p_edit, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_p_edit, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_p_edit, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_p_edit, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_p_edit, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_p_edit, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_p_edit, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_p_delete ui->screen_p_delete = lv_btn_create(ui->screen_tabview_tab_2); ui->screen_p_delete_label = lv_label_create(ui->screen_p_delete); lv_label_set_text(ui->screen_p_delete_label, "删除"); lv_label_set_long_mode(ui->screen_p_delete_label, LV_LABEL_LONG_WRAP); lv_obj_align(ui->screen_p_delete_label, LV_ALIGN_CENTER, 0, 0); lv_obj_set_style_pad_all(ui->screen_p_delete, 0, LV_STATE_DEFAULT); lv_obj_set_width(ui->screen_p_delete_label, LV_PCT(100)); lv_obj_set_pos(ui->screen_p_delete, 349, 410); lv_obj_set_size(ui->screen_p_delete, 100, 50); //Write style for screen_p_delete, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_bg_opa(ui->screen_p_delete, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_p_delete, lv_color_hex(0x2195f6), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_p_delete, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_p_delete, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_p_delete, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_p_delete, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_p_delete, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_p_delete, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_p_delete, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_p_delete, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_p_insert ui->screen_p_insert = lv_btn_create(ui->screen_tabview_tab_2); ui->screen_p_insert_label = lv_label_create(ui->screen_p_insert); lv_label_set_text(ui->screen_p_insert_label, "插入"); lv_label_set_long_mode(ui->screen_p_insert_label, LV_LABEL_LONG_WRAP); lv_obj_align(ui->screen_p_insert_label, LV_ALIGN_CENTER, 0, 0); lv_obj_set_style_pad_all(ui->screen_p_insert, 0, LV_STATE_DEFAULT); lv_obj_set_width(ui->screen_p_insert_label, LV_PCT(100)); lv_obj_set_pos(ui->screen_p_insert, 235, 410); lv_obj_set_size(ui->screen_p_insert, 100, 50); //Write style for screen_p_insert, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_bg_opa(ui->screen_p_insert, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_p_insert, lv_color_hex(0x2195f6), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_p_insert, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_p_insert, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_p_insert, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_p_insert, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_p_insert, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_p_insert, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_p_insert, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_p_insert, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes 机台 ui->screen_tabview_tab_3 = lv_tabview_add_tab(ui->screen_tabview,"机台"); lv_obj_t * screen_tabview_tab_3_label = lv_label_create(ui->screen_tabview_tab_3); lv_label_set_text(screen_tabview_tab_3_label, ""); //Write codes screen_w_io ui->screen_w_io = lv_tabview_create(ui->screen_tabview_tab_3, LV_DIR_RIGHT, 50); lv_obj_set_pos(ui->screen_w_io, -1, -2); lv_obj_set_size(ui->screen_w_io, 980, 480); lv_obj_set_scrollbar_mode(ui->screen_w_io, LV_SCROLLBAR_MODE_OFF); //Write style for screen_w_io, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_bg_opa(ui->screen_w_io, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_w_io, lv_color_hex(0x4d4d4d), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_w_io, &lv_font_montserratMedium_12, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_w_io, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_w_io, 2, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_w_io, 16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_w_io, 1, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_opa(ui->screen_w_io, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_color(ui->screen_w_io, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_side(ui->screen_w_io, LV_BORDER_SIDE_FULL | LV_BORDER_SIDE_RIGHT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_w_io, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_w_io, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write style state: LV_STATE_DEFAULT for &style_screen_w_io_extra_btnm_main_default static lv_style_t style_screen_w_io_extra_btnm_main_default; ui_init_style(&style_screen_w_io_extra_btnm_main_default); lv_style_set_bg_opa(&style_screen_w_io_extra_btnm_main_default, 255); lv_style_set_bg_color(&style_screen_w_io_extra_btnm_main_default, lv_color_hex(0x9ce8ff)); lv_style_set_bg_grad_dir(&style_screen_w_io_extra_btnm_main_default, LV_GRAD_DIR_NONE); lv_style_set_border_width(&style_screen_w_io_extra_btnm_main_default, 0); lv_style_set_radius(&style_screen_w_io_extra_btnm_main_default, 8); lv_obj_add_style(lv_tabview_get_tab_btns(ui->screen_w_io), &style_screen_w_io_extra_btnm_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); //Write style state: LV_STATE_DEFAULT for &style_screen_w_io_extra_btnm_items_default static lv_style_t style_screen_w_io_extra_btnm_items_default; ui_init_style(&style_screen_w_io_extra_btnm_items_default); lv_style_set_text_color(&style_screen_w_io_extra_btnm_items_default, lv_color_hex(0x291f1f)); lv_style_set_text_font(&style_screen_w_io_extra_btnm_items_default, &lv_font_Acme_Regular_16); lv_style_set_text_opa(&style_screen_w_io_extra_btnm_items_default, 255); lv_obj_add_style(lv_tabview_get_tab_btns(ui->screen_w_io), &style_screen_w_io_extra_btnm_items_default, LV_PART_ITEMS|LV_STATE_DEFAULT); //Write style state: LV_STATE_CHECKED for &style_screen_w_io_extra_btnm_items_checked static lv_style_t style_screen_w_io_extra_btnm_items_checked; ui_init_style(&style_screen_w_io_extra_btnm_items_checked); lv_style_set_text_color(&style_screen_w_io_extra_btnm_items_checked, lv_color_hex(0x007185)); lv_style_set_text_font(&style_screen_w_io_extra_btnm_items_checked, &lv_font_Alatsi_Regular_18); lv_style_set_text_opa(&style_screen_w_io_extra_btnm_items_checked, 255); lv_style_set_border_width(&style_screen_w_io_extra_btnm_items_checked, 4); lv_style_set_border_opa(&style_screen_w_io_extra_btnm_items_checked, 255); lv_style_set_border_color(&style_screen_w_io_extra_btnm_items_checked, lv_color_hex(0x007185)); lv_style_set_border_side(&style_screen_w_io_extra_btnm_items_checked, LV_BORDER_SIDE_RIGHT); lv_style_set_radius(&style_screen_w_io_extra_btnm_items_checked, 4); lv_style_set_bg_opa(&style_screen_w_io_extra_btnm_items_checked, 0); lv_obj_add_style(lv_tabview_get_tab_btns(ui->screen_w_io), &style_screen_w_io_extra_btnm_items_checked, LV_PART_ITEMS|LV_STATE_CHECKED); //Write codes DI ui->screen_w_io_tab_1 = lv_tabview_add_tab(ui->screen_w_io,"DI"); lv_obj_t * screen_w_io_tab_1_label = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(screen_w_io_tab_1_label, ""); //Write codes screen_di0 ui->screen_di0 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di0, 255); lv_led_set_color(ui->screen_di0, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di0, 50, 10); lv_obj_set_size(ui->screen_di0, 20, 20); //Write codes screen_di1 ui->screen_di1 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di1, 255); lv_led_set_color(ui->screen_di1, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di1, 150, 10); lv_obj_set_size(ui->screen_di1, 20, 20); //Write codes screen_di2 ui->screen_di2 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di2, 255); lv_led_set_color(ui->screen_di2, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di2, 250, 10); lv_obj_set_size(ui->screen_di2, 20, 20); //Write codes screen_di3 ui->screen_di3 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di3, 255); lv_led_set_color(ui->screen_di3, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di3, 350, 10); lv_obj_set_size(ui->screen_di3, 20, 20); //Write codes screen_di7 ui->screen_di7 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di7, 255); lv_led_set_color(ui->screen_di7, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di7, 750, 10); lv_obj_set_size(ui->screen_di7, 20, 20); //Write codes screen_di4 ui->screen_di4 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di4, 255); lv_led_set_color(ui->screen_di4, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di4, 450, 10); lv_obj_set_size(ui->screen_di4, 20, 20); //Write codes screen_di5 ui->screen_di5 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di5, 255); lv_led_set_color(ui->screen_di5, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di5, 550, 10); lv_obj_set_size(ui->screen_di5, 20, 20); //Write codes screen_di6 ui->screen_di6 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di6, 255); lv_led_set_color(ui->screen_di6, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di6, 650, 10); lv_obj_set_size(ui->screen_di6, 20, 20); //Write codes screen_di8 ui->screen_di8 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di8, 255); lv_led_set_color(ui->screen_di8, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di8, 50, 50); lv_obj_set_size(ui->screen_di8, 20, 20); //Write codes screen_di9 ui->screen_di9 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di9, 255); lv_led_set_color(ui->screen_di9, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di9, 150, 50); lv_obj_set_size(ui->screen_di9, 20, 20); //Write codes screen_di10 ui->screen_di10 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di10, 255); lv_led_set_color(ui->screen_di10, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di10, 250, 50); lv_obj_set_size(ui->screen_di10, 20, 20); //Write codes screen_di11 ui->screen_di11 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di11, 255); lv_led_set_color(ui->screen_di11, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di11, 350, 50); lv_obj_set_size(ui->screen_di11, 20, 20); //Write codes screen_di12 ui->screen_di12 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di12, 255); lv_led_set_color(ui->screen_di12, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di12, 450, 50); lv_obj_set_size(ui->screen_di12, 20, 20); //Write codes screen_di13 ui->screen_di13 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di13, 255); lv_led_set_color(ui->screen_di13, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di13, 550, 50); lv_obj_set_size(ui->screen_di13, 20, 20); //Write codes screen_di14 ui->screen_di14 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di14, 255); lv_led_set_color(ui->screen_di14, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di14, 651, 50); lv_obj_set_size(ui->screen_di14, 20, 20); //Write codes screen_di15 ui->screen_di15 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di15, 255); lv_led_set_color(ui->screen_di15, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di15, 750, 50); lv_obj_set_size(ui->screen_di15, 20, 20); //Write codes screen_di16 ui->screen_di16 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di16, 255); lv_led_set_color(ui->screen_di16, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di16, 50, 90); lv_obj_set_size(ui->screen_di16, 20, 20); //Write codes screen_di17 ui->screen_di17 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di17, 255); lv_led_set_color(ui->screen_di17, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di17, 150, 90); lv_obj_set_size(ui->screen_di17, 20, 20); //Write codes screen_di18 ui->screen_di18 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di18, 255); lv_led_set_color(ui->screen_di18, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di18, 250, 90); lv_obj_set_size(ui->screen_di18, 20, 20); //Write codes screen_di19 ui->screen_di19 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di19, 255); lv_led_set_color(ui->screen_di19, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di19, 351, 90); lv_obj_set_size(ui->screen_di19, 20, 20); //Write codes screen_di20 ui->screen_di20 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di20, 255); lv_led_set_color(ui->screen_di20, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di20, 450, 90); lv_obj_set_size(ui->screen_di20, 20, 20); //Write codes screen_di21 ui->screen_di21 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di21, 255); lv_led_set_color(ui->screen_di21, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di21, 550, 90); lv_obj_set_size(ui->screen_di21, 20, 20); //Write codes screen_name_di0 ui->screen_name_di0 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di0, "DI0"); lv_label_set_long_mode(ui->screen_name_di0, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di0, 80, 13); lv_obj_set_size(ui->screen_name_di0, 55, 14); //Write style for screen_name_di0, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di0, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di0, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di0, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di0, &lv_font_simsun_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di0, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di0, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di0, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di0, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di0, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di0, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di0, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di0, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di0, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di0, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di1 ui->screen_name_di1 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di1, "DI1"); lv_label_set_long_mode(ui->screen_name_di1, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di1, 180, 13); lv_obj_set_size(ui->screen_name_di1, 55, 14); //Write style for screen_name_di1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di1, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di1, &lv_font_simsun_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di1, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di1, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di2 ui->screen_name_di2 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di2, "DI2"); lv_label_set_long_mode(ui->screen_name_di2, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di2, 280, 13); lv_obj_set_size(ui->screen_name_di2, 55, 14); //Write style for screen_name_di2, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di2, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di2, &lv_font_simsun_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di2, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di2, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di3 ui->screen_name_di3 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di3, "DI3"); lv_label_set_long_mode(ui->screen_name_di3, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di3, 380, 13); lv_obj_set_size(ui->screen_name_di3, 55, 14); //Write style for screen_name_di3, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di3, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di3, &lv_font_simsun_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di3, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di3, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di4 ui->screen_name_di4 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di4, "DI4"); lv_label_set_long_mode(ui->screen_name_di4, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di4, 480, 13); lv_obj_set_size(ui->screen_name_di4, 55, 14); //Write style for screen_name_di4, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di4, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di4, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di4, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di4, &lv_font_simsun_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di4, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di4, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di4, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di4, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di4, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di4, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di4, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di4, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di4, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di4, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di5 ui->screen_name_di5 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di5, "DI5"); lv_label_set_long_mode(ui->screen_name_di5, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di5, 581, 13); lv_obj_set_size(ui->screen_name_di5, 55, 14); //Write style for screen_name_di5, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di5, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di5, &lv_font_simsun_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di5, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di5, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di6 ui->screen_name_di6 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di6, "DI6"); lv_label_set_long_mode(ui->screen_name_di6, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di6, 680, 13); lv_obj_set_size(ui->screen_name_di6, 55, 14); //Write style for screen_name_di6, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di6, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di6, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di6, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di6, &lv_font_simsun_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di6, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di6, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di6, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di6, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di6, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di6, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di6, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di6, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di6, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di6, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di7 ui->screen_name_di7 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di7, "DI7"); lv_label_set_long_mode(ui->screen_name_di7, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di7, 780, 13); lv_obj_set_size(ui->screen_name_di7, 55, 14); //Write style for screen_name_di7, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di7, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di7, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di7, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di7, &lv_font_simsun_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di7, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di7, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di7, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di7, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di7, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di7, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di7, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di7, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di7, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di7, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di8 ui->screen_name_di8 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di8, "DI8"); lv_label_set_long_mode(ui->screen_name_di8, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di8, 80, 53); lv_obj_set_size(ui->screen_name_di8, 55, 14); //Write style for screen_name_di8, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di8, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di8, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di8, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di8, &lv_font_simsun_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di8, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di8, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di8, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di8, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di8, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di8, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di8, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di8, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di8, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di8, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di9 ui->screen_name_di9 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di9, "DI9"); lv_label_set_long_mode(ui->screen_name_di9, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di9, 180, 53); lv_obj_set_size(ui->screen_name_di9, 55, 14); //Write style for screen_name_di9, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di9, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di9, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di9, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di9, &lv_font_simsun_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di9, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di9, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di9, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di9, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di9, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di9, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di9, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di9, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di9, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di9, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di10 ui->screen_name_di10 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di10, "DI10"); lv_label_set_long_mode(ui->screen_name_di10, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di10, 280, 53); lv_obj_set_size(ui->screen_name_di10, 55, 14); //Write style for screen_name_di10, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di10, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di10, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di10, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di10, &lv_font_simsun_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di10, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di10, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di10, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di10, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di10, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di10, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di10, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di10, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di10, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di10, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di11 ui->screen_name_di11 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di11, "DI11"); lv_label_set_long_mode(ui->screen_name_di11, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di11, 380, 53); lv_obj_set_size(ui->screen_name_di11, 55, 14); //Write style for screen_name_di11, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di11, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di11, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di11, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di11, &lv_font_simsun_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di11, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di11, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di11, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di11, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di11, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di11, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di11, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di11, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di11, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di11, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_di22 ui->screen_di22 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di22, 255); lv_led_set_color(ui->screen_di22, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di22, 650, 90); lv_obj_set_size(ui->screen_di22, 20, 20); //Write codes screen_di23 ui->screen_di23 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di23, 255); lv_led_set_color(ui->screen_di23, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di23, 750, 90); lv_obj_set_size(ui->screen_di23, 20, 20); //Write codes screen_di24 ui->screen_di24 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di24, 255); lv_led_set_color(ui->screen_di24, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di24, 50, 130); lv_obj_set_size(ui->screen_di24, 20, 20); //Write codes screen_di25 ui->screen_di25 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di25, 255); lv_led_set_color(ui->screen_di25, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di25, 150, 130); lv_obj_set_size(ui->screen_di25, 20, 20); //Write codes screen_di26 ui->screen_di26 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di26, 255); lv_led_set_color(ui->screen_di26, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di26, 250, 130); lv_obj_set_size(ui->screen_di26, 20, 20); //Write codes screen_di27 ui->screen_di27 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di27, 255); lv_led_set_color(ui->screen_di27, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di27, 350, 130); lv_obj_set_size(ui->screen_di27, 20, 20); //Write codes screen_di28 ui->screen_di28 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di28, 255); lv_led_set_color(ui->screen_di28, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di28, 450, 130); lv_obj_set_size(ui->screen_di28, 20, 20); //Write codes screen_di29 ui->screen_di29 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di29, 255); lv_led_set_color(ui->screen_di29, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di29, 550, 130); lv_obj_set_size(ui->screen_di29, 20, 20); //Write codes screen_di30 ui->screen_di30 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di30, 255); lv_led_set_color(ui->screen_di30, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di30, 650, 130); lv_obj_set_size(ui->screen_di30, 20, 20); //Write codes screen_di31 ui->screen_di31 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di31, 255); lv_led_set_color(ui->screen_di31, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di31, 750, 130); lv_obj_set_size(ui->screen_di31, 20, 20); //Write codes screen_di32 ui->screen_di32 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di32, 255); lv_led_set_color(ui->screen_di32, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di32, 50, 170); lv_obj_set_size(ui->screen_di32, 20, 20); //Write codes screen_di33 ui->screen_di33 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di33, 255); lv_led_set_color(ui->screen_di33, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di33, 150, 170); lv_obj_set_size(ui->screen_di33, 20, 20); //Write codes screen_di34 ui->screen_di34 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di34, 255); lv_led_set_color(ui->screen_di34, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di34, 250, 170); lv_obj_set_size(ui->screen_di34, 20, 20); //Write codes screen_di35 ui->screen_di35 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di35, 255); lv_led_set_color(ui->screen_di35, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di35, 350, 170); lv_obj_set_size(ui->screen_di35, 20, 20); //Write codes screen_di36 ui->screen_di36 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di36, 255); lv_led_set_color(ui->screen_di36, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di36, 450, 170); lv_obj_set_size(ui->screen_di36, 20, 20); //Write codes screen_di37 ui->screen_di37 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di37, 255); lv_led_set_color(ui->screen_di37, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di37, 550, 170); lv_obj_set_size(ui->screen_di37, 20, 20); //Write codes screen_di38 ui->screen_di38 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di38, 255); lv_led_set_color(ui->screen_di38, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di38, 650, 170); lv_obj_set_size(ui->screen_di38, 20, 20); //Write codes screen_di39 ui->screen_di39 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di39, 255); lv_led_set_color(ui->screen_di39, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di39, 750, 170); lv_obj_set_size(ui->screen_di39, 20, 20); //Write codes screen_di40 ui->screen_di40 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di40, 255); lv_led_set_color(ui->screen_di40, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di40, 50, 210); lv_obj_set_size(ui->screen_di40, 20, 20); //Write codes screen_di41 ui->screen_di41 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di41, 255); lv_led_set_color(ui->screen_di41, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di41, 150, 210); lv_obj_set_size(ui->screen_di41, 20, 20); //Write codes screen_di42 ui->screen_di42 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di42, 255); lv_led_set_color(ui->screen_di42, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di42, 250, 210); lv_obj_set_size(ui->screen_di42, 20, 20); //Write codes screen_di43 ui->screen_di43 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di43, 255); lv_led_set_color(ui->screen_di43, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di43, 350, 210); lv_obj_set_size(ui->screen_di43, 20, 20); //Write codes screen_di44 ui->screen_di44 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di44, 255); lv_led_set_color(ui->screen_di44, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di44, 450, 210); lv_obj_set_size(ui->screen_di44, 20, 20); //Write codes screen_di45 ui->screen_di45 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di45, 255); lv_led_set_color(ui->screen_di45, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di45, 550, 210); lv_obj_set_size(ui->screen_di45, 20, 20); //Write codes screen_di46 ui->screen_di46 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di46, 255); lv_led_set_color(ui->screen_di46, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di46, 650, 210); lv_obj_set_size(ui->screen_di46, 20, 20); //Write codes screen_di47 ui->screen_di47 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di47, 255); lv_led_set_color(ui->screen_di47, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di47, 750, 210); lv_obj_set_size(ui->screen_di47, 20, 20); //Write codes screen_di48 ui->screen_di48 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di48, 255); lv_led_set_color(ui->screen_di48, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di48, 50, 250); lv_obj_set_size(ui->screen_di48, 20, 20); //Write codes screen_di49 ui->screen_di49 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di49, 255); lv_led_set_color(ui->screen_di49, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di49, 150, 250); lv_obj_set_size(ui->screen_di49, 20, 20); //Write codes screen_di50 ui->screen_di50 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di50, 255); lv_led_set_color(ui->screen_di50, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di50, 250, 250); lv_obj_set_size(ui->screen_di50, 20, 20); //Write codes screen_di51 ui->screen_di51 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di51, 255); lv_led_set_color(ui->screen_di51, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di51, 350, 250); lv_obj_set_size(ui->screen_di51, 20, 20); //Write codes screen_di52 ui->screen_di52 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di52, 255); lv_led_set_color(ui->screen_di52, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di52, 450, 250); lv_obj_set_size(ui->screen_di52, 20, 20); //Write codes screen_di53 ui->screen_di53 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di53, 255); lv_led_set_color(ui->screen_di53, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di53, 551, 250); lv_obj_set_size(ui->screen_di53, 20, 20); //Write codes screen_di54 ui->screen_di54 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di54, 255); lv_led_set_color(ui->screen_di54, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di54, 650, 250); lv_obj_set_size(ui->screen_di54, 20, 20); //Write codes screen_di55 ui->screen_di55 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di55, 255); lv_led_set_color(ui->screen_di55, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di55, 750, 250); lv_obj_set_size(ui->screen_di55, 20, 20); //Write codes screen_di56 ui->screen_di56 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di56, 255); lv_led_set_color(ui->screen_di56, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di56, 50, 290); lv_obj_set_size(ui->screen_di56, 20, 20); //Write codes screen_di57 ui->screen_di57 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di57, 255); lv_led_set_color(ui->screen_di57, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di57, 150, 290); lv_obj_set_size(ui->screen_di57, 20, 20); //Write codes screen_di58 ui->screen_di58 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di58, 255); lv_led_set_color(ui->screen_di58, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di58, 250, 290); lv_obj_set_size(ui->screen_di58, 20, 20); //Write codes screen_di59 ui->screen_di59 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di59, 255); lv_led_set_color(ui->screen_di59, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di59, 350, 290); lv_obj_set_size(ui->screen_di59, 20, 20); //Write codes screen_di60 ui->screen_di60 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di60, 255); lv_led_set_color(ui->screen_di60, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di60, 450, 290); lv_obj_set_size(ui->screen_di60, 20, 20); //Write codes screen_di61 ui->screen_di61 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di61, 255); lv_led_set_color(ui->screen_di61, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di61, 550, 290); lv_obj_set_size(ui->screen_di61, 20, 20); //Write codes screen_di62 ui->screen_di62 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di62, 255); lv_led_set_color(ui->screen_di62, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di62, 650, 290); lv_obj_set_size(ui->screen_di62, 20, 20); //Write codes screen_di63 ui->screen_di63 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di63, 255); lv_led_set_color(ui->screen_di63, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di63, 750, 290); lv_obj_set_size(ui->screen_di63, 20, 20); //Write codes screen_di64 ui->screen_di64 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di64, 255); lv_led_set_color(ui->screen_di64, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di64, 50, 330); lv_obj_set_size(ui->screen_di64, 20, 20); //Write codes screen_di65 ui->screen_di65 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di65, 255); lv_led_set_color(ui->screen_di65, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di65, 150, 330); lv_obj_set_size(ui->screen_di65, 20, 20); //Write codes screen_di66 ui->screen_di66 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di66, 255); lv_led_set_color(ui->screen_di66, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di66, 250, 330); lv_obj_set_size(ui->screen_di66, 20, 20); //Write codes screen_di67 ui->screen_di67 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di67, 255); lv_led_set_color(ui->screen_di67, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di67, 350, 330); lv_obj_set_size(ui->screen_di67, 20, 20); //Write codes screen_di68 ui->screen_di68 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di68, 255); lv_led_set_color(ui->screen_di68, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di68, 450, 330); lv_obj_set_size(ui->screen_di68, 20, 20); //Write codes screen_di69 ui->screen_di69 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di69, 255); lv_led_set_color(ui->screen_di69, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di69, 550, 330); lv_obj_set_size(ui->screen_di69, 20, 20); //Write codes screen_di70 ui->screen_di70 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di70, 255); lv_led_set_color(ui->screen_di70, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di70, 650, 330); lv_obj_set_size(ui->screen_di70, 20, 20); //Write codes screen_di71 ui->screen_di71 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di71, 255); lv_led_set_color(ui->screen_di71, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di71, 750, 330); lv_obj_set_size(ui->screen_di71, 20, 20); //Write codes screen_di72 ui->screen_di72 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di72, 255); lv_led_set_color(ui->screen_di72, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di72, 50, 370); lv_obj_set_size(ui->screen_di72, 20, 20); //Write codes screen_di73 ui->screen_di73 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di73, 255); lv_led_set_color(ui->screen_di73, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di73, 150, 370); lv_obj_set_size(ui->screen_di73, 20, 20); //Write codes screen_di74 ui->screen_di74 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di74, 255); lv_led_set_color(ui->screen_di74, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di74, 250, 370); lv_obj_set_size(ui->screen_di74, 20, 20); //Write codes screen_di75 ui->screen_di75 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di75, 255); lv_led_set_color(ui->screen_di75, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di75, 350, 370); lv_obj_set_size(ui->screen_di75, 20, 20); //Write codes screen_di76 ui->screen_di76 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di76, 255); lv_led_set_color(ui->screen_di76, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di76, 450, 370); lv_obj_set_size(ui->screen_di76, 20, 20); //Write codes screen_di77 ui->screen_di77 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di77, 255); lv_led_set_color(ui->screen_di77, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di77, 550, 370); lv_obj_set_size(ui->screen_di77, 20, 20); //Write codes screen_di78 ui->screen_di78 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di78, 255); lv_led_set_color(ui->screen_di78, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di78, 650, 370); lv_obj_set_size(ui->screen_di78, 20, 20); //Write codes screen_di79 ui->screen_di79 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di79, 255); lv_led_set_color(ui->screen_di79, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di79, 750, 370); lv_obj_set_size(ui->screen_di79, 20, 20); //Write codes screen_di80 ui->screen_di80 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di80, 255); lv_led_set_color(ui->screen_di80, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di80, 50, 410); lv_obj_set_size(ui->screen_di80, 20, 20); //Write codes screen_di81 ui->screen_di81 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di81, 255); lv_led_set_color(ui->screen_di81, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di81, 150, 410); lv_obj_set_size(ui->screen_di81, 20, 20); //Write codes screen_di82 ui->screen_di82 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di82, 255); lv_led_set_color(ui->screen_di82, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di82, 250, 410); lv_obj_set_size(ui->screen_di82, 20, 20); //Write codes screen_di83 ui->screen_di83 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di83, 255); lv_led_set_color(ui->screen_di83, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di83, 350, 410); lv_obj_set_size(ui->screen_di83, 20, 20); //Write codes screen_di84 ui->screen_di84 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di84, 255); lv_led_set_color(ui->screen_di84, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di84, 450, 410); lv_obj_set_size(ui->screen_di84, 20, 20); //Write codes screen_di85 ui->screen_di85 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di85, 255); lv_led_set_color(ui->screen_di85, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di85, 550, 410); lv_obj_set_size(ui->screen_di85, 20, 20); //Write codes screen_di86 ui->screen_di86 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di86, 255); lv_led_set_color(ui->screen_di86, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di86, 650, 410); lv_obj_set_size(ui->screen_di86, 20, 20); //Write codes screen_di87 ui->screen_di87 = lv_led_create(ui->screen_w_io_tab_1); lv_led_set_brightness(ui->screen_di87, 255); lv_led_set_color(ui->screen_di87, lv_color_hex(0x00ff2b)); lv_obj_set_pos(ui->screen_di87, 750, 410); lv_obj_set_size(ui->screen_di87, 20, 20); //Write codes screen_name_di12 ui->screen_name_di12 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di12, "DI12"); lv_label_set_long_mode(ui->screen_name_di12, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di12, 480, 53); lv_obj_set_size(ui->screen_name_di12, 55, 14); //Write style for screen_name_di12, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di12, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di12, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di12, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di12, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di13 ui->screen_name_di13 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di13, "DI13"); lv_label_set_long_mode(ui->screen_name_di13, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di13, 580, 53); lv_obj_set_size(ui->screen_name_di13, 55, 14); //Write style for screen_name_di13, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di13, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di13, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di13, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di13, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di13, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di13, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di13, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di13, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di13, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di13, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di13, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di13, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di13, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di13, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di14 ui->screen_name_di14 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di14, "DI14"); lv_label_set_long_mode(ui->screen_name_di14, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di14, 680, 53); lv_obj_set_size(ui->screen_name_di14, 55, 14); //Write style for screen_name_di14, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di14, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di14, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di14, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di14, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di14, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di14, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di14, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di14, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di14, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di14, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di14, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di14, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di14, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di14, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di15 ui->screen_name_di15 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di15, "DI15"); lv_label_set_long_mode(ui->screen_name_di15, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di15, 780, 53); lv_obj_set_size(ui->screen_name_di15, 55, 14); //Write style for screen_name_di15, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di15, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di15, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di15, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di15, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di15, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di15, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di15, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di15, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di15, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di15, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di15, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di15, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di15, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di15, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di16 ui->screen_name_di16 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di16, "DI16"); lv_label_set_long_mode(ui->screen_name_di16, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di16, 80, 93); lv_obj_set_size(ui->screen_name_di16, 55, 14); //Write style for screen_name_di16, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di16, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di16, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di16, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di16, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di16, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di16, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di16, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di16, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di16, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di16, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di16, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di16, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di16, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di16, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di17 ui->screen_name_di17 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di17, "DI17"); lv_label_set_long_mode(ui->screen_name_di17, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di17, 180, 93); lv_obj_set_size(ui->screen_name_di17, 55, 14); //Write style for screen_name_di17, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di17, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di17, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di17, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di17, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di17, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di17, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di17, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di17, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di17, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di17, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di17, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di17, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di17, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di17, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di18 ui->screen_name_di18 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di18, "DI18"); lv_label_set_long_mode(ui->screen_name_di18, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di18, 280, 93); lv_obj_set_size(ui->screen_name_di18, 55, 14); //Write style for screen_name_di18, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di18, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di18, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di18, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di18, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di18, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di18, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di18, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di18, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di18, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di18, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di18, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di18, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di18, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di18, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di19 ui->screen_name_di19 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di19, "DI19"); lv_label_set_long_mode(ui->screen_name_di19, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di19, 380, 93); lv_obj_set_size(ui->screen_name_di19, 55, 14); //Write style for screen_name_di19, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di19, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di19, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di19, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di19, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di19, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di19, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di19, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di19, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di19, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di19, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di19, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di19, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di19, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di19, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di20 ui->screen_name_di20 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di20, "DI20"); lv_label_set_long_mode(ui->screen_name_di20, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di20, 480, 93); lv_obj_set_size(ui->screen_name_di20, 55, 14); //Write style for screen_name_di20, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di20, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di20, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di20, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di20, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di20, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di20, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di20, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di20, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di20, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di20, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di20, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di20, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di20, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di20, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di21 ui->screen_name_di21 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di21, "DI21"); lv_label_set_long_mode(ui->screen_name_di21, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di21, 580, 93); lv_obj_set_size(ui->screen_name_di21, 55, 14); //Write style for screen_name_di21, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di21, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di21, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di21, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di21, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di21, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di21, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di21, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di21, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di21, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di21, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di21, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di21, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di21, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di21, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di22 ui->screen_name_di22 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di22, "DI22"); lv_label_set_long_mode(ui->screen_name_di22, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di22, 680, 93); lv_obj_set_size(ui->screen_name_di22, 55, 14); //Write style for screen_name_di22, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di22, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di22, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di22, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di22, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di22, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di22, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di22, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di22, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di22, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di22, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di22, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di22, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di22, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di22, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di23 ui->screen_name_di23 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di23, "DI23"); lv_label_set_long_mode(ui->screen_name_di23, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di23, 780, 93); lv_obj_set_size(ui->screen_name_di23, 55, 14); //Write style for screen_name_di23, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di23, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di23, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di23, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di23, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di23, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di23, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di23, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di23, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di23, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di23, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di23, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di23, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di23, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di23, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di24 ui->screen_name_di24 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di24, "DI24"); lv_label_set_long_mode(ui->screen_name_di24, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di24, 80, 133); lv_obj_set_size(ui->screen_name_di24, 55, 14); //Write style for screen_name_di24, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di24, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di24, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di24, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di24, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di24, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di24, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di24, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di24, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di24, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di24, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di24, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di24, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di24, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di24, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di25 ui->screen_name_di25 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di25, "DI25"); lv_label_set_long_mode(ui->screen_name_di25, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di25, 180, 133); lv_obj_set_size(ui->screen_name_di25, 55, 14); //Write style for screen_name_di25, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di25, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di25, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di25, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di25, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di25, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di25, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di25, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di25, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di25, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di25, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di25, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di25, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di25, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di25, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di26 ui->screen_name_di26 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di26, "DI26"); lv_label_set_long_mode(ui->screen_name_di26, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di26, 280, 133); lv_obj_set_size(ui->screen_name_di26, 55, 14); //Write style for screen_name_di26, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di26, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di26, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di26, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di26, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di26, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di26, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di26, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di26, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di26, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di26, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di26, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di26, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di26, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di26, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di27 ui->screen_name_di27 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di27, "DI27"); lv_label_set_long_mode(ui->screen_name_di27, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di27, 380, 133); lv_obj_set_size(ui->screen_name_di27, 55, 14); //Write style for screen_name_di27, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di27, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di27, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di27, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di27, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di27, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di27, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di27, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di27, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di27, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di27, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di27, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di27, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di27, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di27, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di28 ui->screen_name_di28 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di28, "DI28"); lv_label_set_long_mode(ui->screen_name_di28, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di28, 480, 133); lv_obj_set_size(ui->screen_name_di28, 55, 14); //Write style for screen_name_di28, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di28, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di28, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di28, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di28, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di28, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di28, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di28, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di28, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di28, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di28, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di28, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di28, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di28, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di28, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di29 ui->screen_name_di29 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di29, "DI29"); lv_label_set_long_mode(ui->screen_name_di29, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di29, 580, 133); lv_obj_set_size(ui->screen_name_di29, 55, 14); //Write style for screen_name_di29, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di29, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di29, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di29, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di29, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di29, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di29, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di29, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di29, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di29, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di29, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di29, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di29, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di29, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di29, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di30 ui->screen_name_di30 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di30, "DI30"); lv_label_set_long_mode(ui->screen_name_di30, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di30, 680, 133); lv_obj_set_size(ui->screen_name_di30, 55, 14); //Write style for screen_name_di30, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di30, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di30, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di30, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di30, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di30, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di30, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di30, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di30, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di30, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di30, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di30, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di30, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di30, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di30, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di31 ui->screen_name_di31 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di31, "DI31"); lv_label_set_long_mode(ui->screen_name_di31, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di31, 780, 133); lv_obj_set_size(ui->screen_name_di31, 55, 14); //Write style for screen_name_di31, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di31, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di31, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di31, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di31, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di31, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di31, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di31, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di31, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di31, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di31, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di31, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di31, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di31, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di31, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di32 ui->screen_name_di32 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di32, "DI32"); lv_label_set_long_mode(ui->screen_name_di32, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di32, 80, 173); lv_obj_set_size(ui->screen_name_di32, 55, 14); //Write style for screen_name_di32, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di32, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di32, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di32, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di32, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di32, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di32, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di32, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di32, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di32, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di32, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di32, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di32, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di32, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di32, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di33 ui->screen_name_di33 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di33, "DI33"); lv_label_set_long_mode(ui->screen_name_di33, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di33, 180, 173); lv_obj_set_size(ui->screen_name_di33, 55, 14); //Write style for screen_name_di33, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di33, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di33, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di33, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di33, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di33, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di33, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di33, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di33, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di33, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di33, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di33, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di33, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di33, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di33, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di34 ui->screen_name_di34 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di34, "DI34"); lv_label_set_long_mode(ui->screen_name_di34, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di34, 280, 173); lv_obj_set_size(ui->screen_name_di34, 55, 14); //Write style for screen_name_di34, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di34, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di34, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di34, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di34, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di34, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di34, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di34, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di34, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di34, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di34, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di34, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di34, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di34, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di34, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di35 ui->screen_name_di35 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di35, "DI35"); lv_label_set_long_mode(ui->screen_name_di35, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di35, 380, 173); lv_obj_set_size(ui->screen_name_di35, 55, 14); //Write style for screen_name_di35, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di35, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di35, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di35, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di35, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di35, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di35, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di35, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di35, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di35, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di35, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di35, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di35, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di35, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di35, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di36 ui->screen_name_di36 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di36, "DI36"); lv_label_set_long_mode(ui->screen_name_di36, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di36, 480, 173); lv_obj_set_size(ui->screen_name_di36, 55, 14); //Write style for screen_name_di36, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di36, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di36, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di36, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di36, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di36, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di36, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di36, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di36, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di36, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di36, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di36, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di36, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di36, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di36, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di37 ui->screen_name_di37 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di37, "DI37"); lv_label_set_long_mode(ui->screen_name_di37, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di37, 580, 173); lv_obj_set_size(ui->screen_name_di37, 55, 14); //Write style for screen_name_di37, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di37, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di37, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di37, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di37, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di37, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di37, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di37, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di37, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di37, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di37, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di37, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di37, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di37, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di37, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di38 ui->screen_name_di38 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di38, "DI38"); lv_label_set_long_mode(ui->screen_name_di38, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di38, 680, 173); lv_obj_set_size(ui->screen_name_di38, 55, 14); //Write style for screen_name_di38, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di38, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di38, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di38, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di38, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di38, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di38, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di38, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di38, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di38, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di38, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di38, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di38, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di38, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di38, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di39 ui->screen_name_di39 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di39, "DI39"); lv_label_set_long_mode(ui->screen_name_di39, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di39, 780, 173); lv_obj_set_size(ui->screen_name_di39, 55, 14); //Write style for screen_name_di39, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di39, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di39, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di39, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di39, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di39, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di39, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di39, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di39, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di39, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di39, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di39, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di39, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di39, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di39, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di40 ui->screen_name_di40 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di40, "DI40"); lv_label_set_long_mode(ui->screen_name_di40, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di40, 80, 213); lv_obj_set_size(ui->screen_name_di40, 55, 14); //Write style for screen_name_di40, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di40, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di40, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di40, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di40, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di40, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di40, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di40, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di40, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di40, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di40, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di40, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di40, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di40, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di40, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di41 ui->screen_name_di41 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di41, "DI41"); lv_label_set_long_mode(ui->screen_name_di41, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di41, 180, 213); lv_obj_set_size(ui->screen_name_di41, 55, 14); //Write style for screen_name_di41, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di41, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di41, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di41, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di41, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di41, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di41, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di41, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di41, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di41, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di41, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di41, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di41, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di41, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di41, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di42 ui->screen_name_di42 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di42, "DI42"); lv_label_set_long_mode(ui->screen_name_di42, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di42, 280, 213); lv_obj_set_size(ui->screen_name_di42, 55, 14); //Write style for screen_name_di42, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di42, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di42, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di42, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di42, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di42, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di42, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di42, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di42, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di42, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di42, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di42, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di42, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di42, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di42, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di43 ui->screen_name_di43 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di43, "DI43"); lv_label_set_long_mode(ui->screen_name_di43, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di43, 380, 213); lv_obj_set_size(ui->screen_name_di43, 55, 14); //Write style for screen_name_di43, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di43, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di43, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di43, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di43, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di43, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di43, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di43, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di43, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di43, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di43, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di43, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di43, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di43, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di43, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di44 ui->screen_name_di44 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di44, "DI44"); lv_label_set_long_mode(ui->screen_name_di44, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di44, 480, 213); lv_obj_set_size(ui->screen_name_di44, 55, 14); //Write style for screen_name_di44, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di44, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di44, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di44, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di44, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di44, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di44, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di44, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di44, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di44, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di44, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di44, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di44, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di44, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di44, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di45 ui->screen_name_di45 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di45, "DI45"); lv_label_set_long_mode(ui->screen_name_di45, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di45, 580, 213); lv_obj_set_size(ui->screen_name_di45, 55, 14); //Write style for screen_name_di45, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di45, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di45, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di45, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di45, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di45, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di45, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di45, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di45, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di45, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di45, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di45, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di45, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di45, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di45, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di46 ui->screen_name_di46 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di46, "DI46"); lv_label_set_long_mode(ui->screen_name_di46, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di46, 680, 213); lv_obj_set_size(ui->screen_name_di46, 55, 14); //Write style for screen_name_di46, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di46, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di46, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di46, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di46, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di46, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di46, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di46, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di46, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di46, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di46, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di46, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di46, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di46, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di46, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di47 ui->screen_name_di47 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di47, "DI47"); lv_label_set_long_mode(ui->screen_name_di47, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di47, 780, 213); lv_obj_set_size(ui->screen_name_di47, 55, 14); //Write style for screen_name_di47, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di47, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di47, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di47, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di47, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di47, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di47, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di47, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di47, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di47, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di47, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di47, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di47, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di47, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di47, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di48 ui->screen_name_di48 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di48, "DI48"); lv_label_set_long_mode(ui->screen_name_di48, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di48, 80, 253); lv_obj_set_size(ui->screen_name_di48, 55, 14); //Write style for screen_name_di48, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di48, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di48, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di48, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di48, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di48, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di48, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di48, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di48, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di48, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di48, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di48, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di48, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di48, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di48, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di49 ui->screen_name_di49 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di49, "DI49"); lv_label_set_long_mode(ui->screen_name_di49, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di49, 180, 253); lv_obj_set_size(ui->screen_name_di49, 55, 14); //Write style for screen_name_di49, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di49, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di49, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di49, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di49, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di49, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di49, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di49, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di49, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di49, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di49, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di49, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di49, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di49, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di49, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di50 ui->screen_name_di50 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di50, "DI50"); lv_label_set_long_mode(ui->screen_name_di50, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di50, 280, 253); lv_obj_set_size(ui->screen_name_di50, 55, 14); //Write style for screen_name_di50, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di50, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di50, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di50, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di50, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di50, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di50, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di50, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di50, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di50, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di50, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di50, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di50, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di50, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di50, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di51 ui->screen_name_di51 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di51, "DI51"); lv_label_set_long_mode(ui->screen_name_di51, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di51, 380, 253); lv_obj_set_size(ui->screen_name_di51, 55, 14); //Write style for screen_name_di51, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di51, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di51, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di51, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di51, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di51, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di51, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di51, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di51, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di51, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di51, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di51, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di51, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di51, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di51, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di52 ui->screen_name_di52 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di52, "DI52"); lv_label_set_long_mode(ui->screen_name_di52, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di52, 480, 253); lv_obj_set_size(ui->screen_name_di52, 55, 14); //Write style for screen_name_di52, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di52, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di52, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di52, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di52, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di52, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di52, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di52, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di52, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di52, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di52, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di52, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di52, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di52, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di52, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di53 ui->screen_name_di53 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di53, "DI53"); lv_label_set_long_mode(ui->screen_name_di53, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di53, 580, 253); lv_obj_set_size(ui->screen_name_di53, 55, 14); //Write style for screen_name_di53, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di53, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di53, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di53, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di53, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di53, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di53, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di53, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di53, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di53, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di53, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di53, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di53, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di53, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di53, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di54 ui->screen_name_di54 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di54, "DI54"); lv_label_set_long_mode(ui->screen_name_di54, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di54, 680, 253); lv_obj_set_size(ui->screen_name_di54, 55, 14); //Write style for screen_name_di54, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di54, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di54, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di54, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di54, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di54, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di54, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di54, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di54, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di54, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di54, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di54, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di54, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di54, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di54, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di55 ui->screen_name_di55 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di55, "DI55"); lv_label_set_long_mode(ui->screen_name_di55, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di55, 780, 253); lv_obj_set_size(ui->screen_name_di55, 55, 14); //Write style for screen_name_di55, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di55, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di55, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di55, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di55, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di55, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di55, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di55, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di55, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di55, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di55, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di55, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di55, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di55, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di55, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di56 ui->screen_name_di56 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di56, "DI56"); lv_label_set_long_mode(ui->screen_name_di56, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di56, 80, 293); lv_obj_set_size(ui->screen_name_di56, 55, 14); //Write style for screen_name_di56, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di56, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di56, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di56, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di56, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di56, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di56, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di56, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di56, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di56, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di56, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di56, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di56, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di56, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di56, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di57 ui->screen_name_di57 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di57, "DI57"); lv_label_set_long_mode(ui->screen_name_di57, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di57, 180, 293); lv_obj_set_size(ui->screen_name_di57, 55, 14); //Write style for screen_name_di57, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di57, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di57, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di57, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di57, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di57, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di57, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di57, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di57, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di57, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di57, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di57, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di57, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di57, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di57, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di58 ui->screen_name_di58 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di58, "DI58"); lv_label_set_long_mode(ui->screen_name_di58, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di58, 280, 293); lv_obj_set_size(ui->screen_name_di58, 55, 14); //Write style for screen_name_di58, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di58, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di58, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di58, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di58, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di58, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di58, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di58, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di58, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di58, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di58, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di58, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di58, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di58, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di58, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di59 ui->screen_name_di59 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di59, "DI59"); lv_label_set_long_mode(ui->screen_name_di59, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di59, 380, 293); lv_obj_set_size(ui->screen_name_di59, 55, 14); //Write style for screen_name_di59, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di59, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di59, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di59, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di59, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di59, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di59, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di59, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di59, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di59, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di59, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di59, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di59, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di59, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di59, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di60 ui->screen_name_di60 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di60, "DI60"); lv_label_set_long_mode(ui->screen_name_di60, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di60, 480, 293); lv_obj_set_size(ui->screen_name_di60, 55, 14); //Write style for screen_name_di60, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di60, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di60, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di60, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di60, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di60, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di60, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di60, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di60, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di60, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di60, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di60, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di60, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di60, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di60, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di61 ui->screen_name_di61 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di61, "DI61"); lv_label_set_long_mode(ui->screen_name_di61, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di61, 580, 293); lv_obj_set_size(ui->screen_name_di61, 55, 14); //Write style for screen_name_di61, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di61, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di61, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di61, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di61, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di61, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di61, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di61, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di61, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di61, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di61, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di61, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di61, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di61, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di61, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di62 ui->screen_name_di62 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di62, "DI62"); lv_label_set_long_mode(ui->screen_name_di62, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di62, 680, 293); lv_obj_set_size(ui->screen_name_di62, 55, 14); //Write style for screen_name_di62, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di62, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di62, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di62, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di62, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di62, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di62, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di62, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di62, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di62, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di62, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di62, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di62, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di62, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di62, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di63 ui->screen_name_di63 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di63, "DI63"); lv_label_set_long_mode(ui->screen_name_di63, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di63, 780, 293); lv_obj_set_size(ui->screen_name_di63, 55, 14); //Write style for screen_name_di63, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di63, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di63, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di63, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di63, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di63, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di63, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di63, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di63, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di63, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di63, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di63, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di63, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di63, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di63, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di64 ui->screen_name_di64 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di64, "DI64"); lv_label_set_long_mode(ui->screen_name_di64, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di64, 80, 333); lv_obj_set_size(ui->screen_name_di64, 55, 14); //Write style for screen_name_di64, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di64, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di64, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di64, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di64, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di64, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di64, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di64, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di64, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di64, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di64, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di64, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di64, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di64, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di64, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di65 ui->screen_name_di65 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di65, "DI65"); lv_label_set_long_mode(ui->screen_name_di65, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di65, 180, 333); lv_obj_set_size(ui->screen_name_di65, 55, 14); //Write style for screen_name_di65, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di65, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di65, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di65, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di65, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di65, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di65, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di65, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di65, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di65, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di65, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di65, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di65, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di65, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di65, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di66 ui->screen_name_di66 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di66, "DI66"); lv_label_set_long_mode(ui->screen_name_di66, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di66, 280, 333); lv_obj_set_size(ui->screen_name_di66, 55, 14); //Write style for screen_name_di66, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di66, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di66, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di66, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di66, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di66, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di66, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di66, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di66, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di66, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di66, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di66, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di66, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di66, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di66, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di67 ui->screen_name_di67 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di67, "DI67"); lv_label_set_long_mode(ui->screen_name_di67, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di67, 380, 333); lv_obj_set_size(ui->screen_name_di67, 55, 14); //Write style for screen_name_di67, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di67, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di67, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di67, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di67, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di67, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di67, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di67, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di67, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di67, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di67, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di67, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di67, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di67, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di67, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di68 ui->screen_name_di68 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di68, "DI68"); lv_label_set_long_mode(ui->screen_name_di68, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di68, 480, 333); lv_obj_set_size(ui->screen_name_di68, 55, 14); //Write style for screen_name_di68, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di68, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di68, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di68, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di68, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di68, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di68, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di68, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di68, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di68, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di68, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di68, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di68, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di68, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di68, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di69 ui->screen_name_di69 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di69, "DI69"); lv_label_set_long_mode(ui->screen_name_di69, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di69, 580, 333); lv_obj_set_size(ui->screen_name_di69, 55, 14); //Write style for screen_name_di69, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di69, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di69, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di69, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di69, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di69, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di69, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di69, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di69, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di69, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di69, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di69, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di69, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di69, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di69, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di70 ui->screen_name_di70 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di70, "DI70"); lv_label_set_long_mode(ui->screen_name_di70, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di70, 680, 333); lv_obj_set_size(ui->screen_name_di70, 55, 14); //Write style for screen_name_di70, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di70, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di70, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di70, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di70, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di70, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di70, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di70, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di70, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di70, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di70, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di70, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di70, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di70, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di70, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di71 ui->screen_name_di71 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di71, "DI71"); lv_label_set_long_mode(ui->screen_name_di71, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di71, 780, 333); lv_obj_set_size(ui->screen_name_di71, 55, 14); //Write style for screen_name_di71, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di71, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di71, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di71, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di71, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di71, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di71, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di71, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di71, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di71, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di71, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di71, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di71, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di71, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di71, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di72 ui->screen_name_di72 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di72, "DI72"); lv_label_set_long_mode(ui->screen_name_di72, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di72, 80, 373); lv_obj_set_size(ui->screen_name_di72, 55, 14); //Write style for screen_name_di72, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di72, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di72, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di72, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di72, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di72, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di72, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di72, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di72, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di72, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di72, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di72, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di72, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di72, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di72, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di73 ui->screen_name_di73 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di73, "DI73"); lv_label_set_long_mode(ui->screen_name_di73, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di73, 180, 373); lv_obj_set_size(ui->screen_name_di73, 55, 14); //Write style for screen_name_di73, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di73, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di73, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di73, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di73, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di73, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di73, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di73, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di73, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di73, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di73, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di73, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di73, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di73, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di73, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di74 ui->screen_name_di74 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di74, "DI74"); lv_label_set_long_mode(ui->screen_name_di74, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di74, 280, 373); lv_obj_set_size(ui->screen_name_di74, 55, 14); //Write style for screen_name_di74, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di74, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di74, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di74, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di74, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di74, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di74, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di74, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di74, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di74, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di74, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di74, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di74, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di74, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di74, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di75 ui->screen_name_di75 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di75, "DI75"); lv_label_set_long_mode(ui->screen_name_di75, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di75, 380, 373); lv_obj_set_size(ui->screen_name_di75, 55, 14); //Write style for screen_name_di75, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di75, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di75, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di75, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di75, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di75, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di75, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di75, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di75, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di75, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di75, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di75, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di75, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di75, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di75, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di76 ui->screen_name_di76 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di76, "DI76"); lv_label_set_long_mode(ui->screen_name_di76, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di76, 480, 373); lv_obj_set_size(ui->screen_name_di76, 55, 14); //Write style for screen_name_di76, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di76, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di76, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di76, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di76, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di76, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di76, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di76, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di76, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di76, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di76, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di76, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di76, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di76, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di76, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di77 ui->screen_name_di77 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di77, "DI77"); lv_label_set_long_mode(ui->screen_name_di77, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di77, 580, 373); lv_obj_set_size(ui->screen_name_di77, 55, 14); //Write style for screen_name_di77, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di77, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di77, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di77, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di77, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di77, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di77, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di77, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di77, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di77, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di77, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di77, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di77, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di77, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di77, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di78 ui->screen_name_di78 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di78, "DI78"); lv_label_set_long_mode(ui->screen_name_di78, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di78, 680, 373); lv_obj_set_size(ui->screen_name_di78, 55, 14); //Write style for screen_name_di78, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di78, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di78, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di78, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di78, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di78, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di78, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di78, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di78, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di78, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di78, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di78, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di78, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di78, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di78, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di79 ui->screen_name_di79 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di79, "DI79"); lv_label_set_long_mode(ui->screen_name_di79, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di79, 780, 373); lv_obj_set_size(ui->screen_name_di79, 55, 14); //Write style for screen_name_di79, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di79, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di79, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di79, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di79, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di79, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di79, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di79, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di79, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di79, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di79, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di79, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di79, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di79, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di79, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di80 ui->screen_name_di80 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di80, "DI80"); lv_label_set_long_mode(ui->screen_name_di80, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di80, 80, 413); lv_obj_set_size(ui->screen_name_di80, 55, 14); //Write style for screen_name_di80, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di80, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di80, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di80, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di80, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di80, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di80, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di80, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di80, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di80, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di80, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di80, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di80, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di80, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di80, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di81 ui->screen_name_di81 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di81, "DI81"); lv_label_set_long_mode(ui->screen_name_di81, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di81, 180, 413); lv_obj_set_size(ui->screen_name_di81, 55, 14); //Write style for screen_name_di81, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di81, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di81, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di81, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di81, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di81, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di81, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di81, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di81, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di81, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di81, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di81, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di81, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di81, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di81, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di82 ui->screen_name_di82 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di82, "DI82"); lv_label_set_long_mode(ui->screen_name_di82, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di82, 280, 413); lv_obj_set_size(ui->screen_name_di82, 55, 14); //Write style for screen_name_di82, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di82, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di82, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di82, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di82, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di82, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di82, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di82, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di82, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di82, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di82, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di82, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di82, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di82, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di82, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di83 ui->screen_name_di83 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di83, "DI83"); lv_label_set_long_mode(ui->screen_name_di83, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di83, 380, 413); lv_obj_set_size(ui->screen_name_di83, 55, 14); //Write style for screen_name_di83, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di83, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di83, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di83, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di83, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di83, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di83, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di83, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di83, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di83, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di83, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di83, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di83, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di83, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di83, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di84 ui->screen_name_di84 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di84, "DI84"); lv_label_set_long_mode(ui->screen_name_di84, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di84, 480, 413); lv_obj_set_size(ui->screen_name_di84, 55, 14); //Write style for screen_name_di84, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di84, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di84, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di84, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di84, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di84, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di84, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di84, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di84, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di84, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di84, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di84, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di84, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di84, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di84, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di85 ui->screen_name_di85 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di85, "DI85"); lv_label_set_long_mode(ui->screen_name_di85, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di85, 580, 413); lv_obj_set_size(ui->screen_name_di85, 55, 14); //Write style for screen_name_di85, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di85, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di85, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di85, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di85, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di85, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di85, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di85, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di85, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di85, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di85, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di85, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di85, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di85, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di85, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di86 ui->screen_name_di86 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di86, "DI86"); lv_label_set_long_mode(ui->screen_name_di86, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di86, 680, 412); lv_obj_set_size(ui->screen_name_di86, 55, 14); //Write style for screen_name_di86, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di86, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di86, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di86, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di86, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di86, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di86, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di86, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di86, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di86, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di86, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di86, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di86, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di86, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di86, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_di87 ui->screen_name_di87 = lv_label_create(ui->screen_w_io_tab_1); lv_label_set_text(ui->screen_name_di87, "DI87"); lv_label_set_long_mode(ui->screen_name_di87, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_di87, 780, 413); lv_obj_set_size(ui->screen_name_di87, 55, 14); //Write style for screen_name_di87, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_di87, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_di87, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_di87, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_di87, &lv_font_simsun_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_di87, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_di87, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_di87, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_di87, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_di87, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_di87, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_di87, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_di87, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_di87, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_di87, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes DO ui->screen_w_io_tab_2 = lv_tabview_add_tab(ui->screen_w_io,"DO"); lv_obj_t * screen_w_io_tab_2_label = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(screen_w_io_tab_2_label, ""); //Write codes screen_do0 ui->screen_do0 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do0, 255); lv_led_set_color(ui->screen_do0, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do0, 50, 10); lv_obj_set_size(ui->screen_do0, 20, 20); //Write codes screen_do1 ui->screen_do1 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do1, 255); lv_led_set_color(ui->screen_do1, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do1, 150, 10); lv_obj_set_size(ui->screen_do1, 20, 20); //Write codes screen_do2 ui->screen_do2 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do2, 255); lv_led_set_color(ui->screen_do2, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do2, 250, 10); lv_obj_set_size(ui->screen_do2, 20, 20); //Write codes screen_do3 ui->screen_do3 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do3, 255); lv_led_set_color(ui->screen_do3, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do3, 350, 10); lv_obj_set_size(ui->screen_do3, 20, 20); //Write codes screen_do4 ui->screen_do4 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do4, 255); lv_led_set_color(ui->screen_do4, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do4, 450, 10); lv_obj_set_size(ui->screen_do4, 20, 20); //Write codes screen_do5 ui->screen_do5 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do5, 255); lv_led_set_color(ui->screen_do5, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do5, 550, 10); lv_obj_set_size(ui->screen_do5, 20, 20); //Write codes screen_do6 ui->screen_do6 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do6, 255); lv_led_set_color(ui->screen_do6, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do6, 650, 10); lv_obj_set_size(ui->screen_do6, 20, 20); //Write codes screen_do7 ui->screen_do7 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do7, 255); lv_led_set_color(ui->screen_do7, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do7, 750, 10); lv_obj_set_size(ui->screen_do7, 20, 20); //Write codes screen_do8 ui->screen_do8 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do8, 255); lv_led_set_color(ui->screen_do8, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do8, 50, 50); lv_obj_set_size(ui->screen_do8, 20, 20); //Write codes screen_do9 ui->screen_do9 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do9, 255); lv_led_set_color(ui->screen_do9, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do9, 150, 50); lv_obj_set_size(ui->screen_do9, 20, 20); //Write codes screen_do10 ui->screen_do10 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do10, 255); lv_led_set_color(ui->screen_do10, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do10, 250, 50); lv_obj_set_size(ui->screen_do10, 20, 20); //Write codes screen_do11 ui->screen_do11 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do11, 255); lv_led_set_color(ui->screen_do11, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do11, 350, 50); lv_obj_set_size(ui->screen_do11, 20, 20); //Write codes screen_do12 ui->screen_do12 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do12, 255); lv_led_set_color(ui->screen_do12, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do12, 450, 50); lv_obj_set_size(ui->screen_do12, 20, 20); //Write codes screen_do13 ui->screen_do13 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do13, 255); lv_led_set_color(ui->screen_do13, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do13, 550, 50); lv_obj_set_size(ui->screen_do13, 20, 20); //Write codes screen_do14 ui->screen_do14 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do14, 255); lv_led_set_color(ui->screen_do14, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do14, 650, 50); lv_obj_set_size(ui->screen_do14, 20, 20); //Write codes screen_do15 ui->screen_do15 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do15, 255); lv_led_set_color(ui->screen_do15, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do15, 750, 50); lv_obj_set_size(ui->screen_do15, 20, 20); //Write codes screen_do16 ui->screen_do16 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do16, 255); lv_led_set_color(ui->screen_do16, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do16, 50, 90); lv_obj_set_size(ui->screen_do16, 20, 20); //Write codes screen_do17 ui->screen_do17 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do17, 255); lv_led_set_color(ui->screen_do17, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do17, 150, 90); lv_obj_set_size(ui->screen_do17, 20, 20); //Write codes screen_do18 ui->screen_do18 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do18, 255); lv_led_set_color(ui->screen_do18, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do18, 250, 90); lv_obj_set_size(ui->screen_do18, 20, 20); //Write codes screen_do19 ui->screen_do19 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do19, 255); lv_led_set_color(ui->screen_do19, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do19, 350, 90); lv_obj_set_size(ui->screen_do19, 20, 20); //Write codes screen_do20 ui->screen_do20 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do20, 255); lv_led_set_color(ui->screen_do20, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do20, 450, 90); lv_obj_set_size(ui->screen_do20, 20, 20); //Write codes screen_do21 ui->screen_do21 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do21, 255); lv_led_set_color(ui->screen_do21, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do21, 550, 90); lv_obj_set_size(ui->screen_do21, 20, 20); //Write codes screen_do22 ui->screen_do22 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do22, 255); lv_led_set_color(ui->screen_do22, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do22, 650, 90); lv_obj_set_size(ui->screen_do22, 20, 20); //Write codes screen_do23 ui->screen_do23 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do23, 255); lv_led_set_color(ui->screen_do23, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do23, 750, 90); lv_obj_set_size(ui->screen_do23, 20, 20); //Write codes screen_do24 ui->screen_do24 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do24, 255); lv_led_set_color(ui->screen_do24, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do24, 50, 130); lv_obj_set_size(ui->screen_do24, 20, 20); //Write codes screen_do25 ui->screen_do25 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do25, 255); lv_led_set_color(ui->screen_do25, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do25, 150, 130); lv_obj_set_size(ui->screen_do25, 20, 20); //Write codes screen_do26 ui->screen_do26 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do26, 255); lv_led_set_color(ui->screen_do26, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do26, 250, 130); lv_obj_set_size(ui->screen_do26, 20, 20); //Write codes screen_do27 ui->screen_do27 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do27, 255); lv_led_set_color(ui->screen_do27, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do27, 350, 130); lv_obj_set_size(ui->screen_do27, 20, 20); //Write codes screen_do28 ui->screen_do28 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do28, 255); lv_led_set_color(ui->screen_do28, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do28, 450, 130); lv_obj_set_size(ui->screen_do28, 20, 20); //Write codes screen_do29 ui->screen_do29 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do29, 255); lv_led_set_color(ui->screen_do29, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do29, 550, 130); lv_obj_set_size(ui->screen_do29, 20, 20); //Write codes screen_do30 ui->screen_do30 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do30, 255); lv_led_set_color(ui->screen_do30, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do30, 650, 130); lv_obj_set_size(ui->screen_do30, 20, 20); //Write codes screen_do31 ui->screen_do31 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do31, 255); lv_led_set_color(ui->screen_do31, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do31, 750, 130); lv_obj_set_size(ui->screen_do31, 20, 20); //Write codes screen_do32 ui->screen_do32 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do32, 255); lv_led_set_color(ui->screen_do32, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do32, 50, 170); lv_obj_set_size(ui->screen_do32, 20, 20); //Write codes screen_do33 ui->screen_do33 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do33, 255); lv_led_set_color(ui->screen_do33, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do33, 150, 170); lv_obj_set_size(ui->screen_do33, 20, 20); //Write codes screen_do34 ui->screen_do34 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do34, 255); lv_led_set_color(ui->screen_do34, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do34, 250, 170); lv_obj_set_size(ui->screen_do34, 20, 20); //Write codes screen_do35 ui->screen_do35 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do35, 255); lv_led_set_color(ui->screen_do35, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do35, 350, 170); lv_obj_set_size(ui->screen_do35, 20, 20); //Write codes screen_do36 ui->screen_do36 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do36, 255); lv_led_set_color(ui->screen_do36, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do36, 450, 170); lv_obj_set_size(ui->screen_do36, 20, 20); //Write codes screen_do37 ui->screen_do37 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do37, 255); lv_led_set_color(ui->screen_do37, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do37, 550, 170); lv_obj_set_size(ui->screen_do37, 20, 20); //Write codes screen_do38 ui->screen_do38 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do38, 255); lv_led_set_color(ui->screen_do38, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do38, 650, 170); lv_obj_set_size(ui->screen_do38, 20, 20); //Write codes screen_do39 ui->screen_do39 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do39, 255); lv_led_set_color(ui->screen_do39, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do39, 750, 170); lv_obj_set_size(ui->screen_do39, 20, 20); //Write codes screen_do40 ui->screen_do40 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do40, 255); lv_led_set_color(ui->screen_do40, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do40, 50, 210); lv_obj_set_size(ui->screen_do40, 20, 20); //Write codes screen_do41 ui->screen_do41 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do41, 255); lv_led_set_color(ui->screen_do41, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do41, 150, 210); lv_obj_set_size(ui->screen_do41, 20, 20); //Write codes screen_do42 ui->screen_do42 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do42, 255); lv_led_set_color(ui->screen_do42, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do42, 250, 210); lv_obj_set_size(ui->screen_do42, 20, 20); //Write codes screen_do43 ui->screen_do43 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do43, 255); lv_led_set_color(ui->screen_do43, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do43, 350, 210); lv_obj_set_size(ui->screen_do43, 20, 20); //Write codes screen_do44 ui->screen_do44 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do44, 255); lv_led_set_color(ui->screen_do44, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do44, 450, 210); lv_obj_set_size(ui->screen_do44, 20, 20); //Write codes screen_do45 ui->screen_do45 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do45, 255); lv_led_set_color(ui->screen_do45, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do45, 550, 210); lv_obj_set_size(ui->screen_do45, 20, 20); //Write codes screen_do46 ui->screen_do46 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do46, 255); lv_led_set_color(ui->screen_do46, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do46, 650, 210); lv_obj_set_size(ui->screen_do46, 20, 20); //Write codes screen_do47 ui->screen_do47 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do47, 255); lv_led_set_color(ui->screen_do47, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do47, 750, 210); lv_obj_set_size(ui->screen_do47, 20, 20); //Write codes screen_do48 ui->screen_do48 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do48, 255); lv_led_set_color(ui->screen_do48, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do48, 50, 250); lv_obj_set_size(ui->screen_do48, 20, 20); //Write codes screen_do49 ui->screen_do49 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do49, 255); lv_led_set_color(ui->screen_do49, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do49, 150, 250); lv_obj_set_size(ui->screen_do49, 20, 20); //Write codes screen_do50 ui->screen_do50 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do50, 255); lv_led_set_color(ui->screen_do50, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do50, 250, 250); lv_obj_set_size(ui->screen_do50, 20, 20); //Write codes screen_do51 ui->screen_do51 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do51, 255); lv_led_set_color(ui->screen_do51, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do51, 350, 250); lv_obj_set_size(ui->screen_do51, 20, 20); //Write codes screen_do52 ui->screen_do52 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do52, 255); lv_led_set_color(ui->screen_do52, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do52, 450, 250); lv_obj_set_size(ui->screen_do52, 20, 20); //Write codes screen_do53 ui->screen_do53 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do53, 255); lv_led_set_color(ui->screen_do53, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do53, 550, 250); lv_obj_set_size(ui->screen_do53, 20, 20); //Write codes screen_do54 ui->screen_do54 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do54, 255); lv_led_set_color(ui->screen_do54, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do54, 650, 250); lv_obj_set_size(ui->screen_do54, 20, 20); //Write codes screen_do55 ui->screen_do55 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do55, 255); lv_led_set_color(ui->screen_do55, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do55, 750, 250); lv_obj_set_size(ui->screen_do55, 20, 20); //Write codes screen_do56 ui->screen_do56 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do56, 255); lv_led_set_color(ui->screen_do56, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do56, 50, 290); lv_obj_set_size(ui->screen_do56, 20, 20); //Write codes screen_do57 ui->screen_do57 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do57, 255); lv_led_set_color(ui->screen_do57, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do57, 150, 290); lv_obj_set_size(ui->screen_do57, 20, 20); //Write codes screen_do58 ui->screen_do58 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do58, 255); lv_led_set_color(ui->screen_do58, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do58, 250, 290); lv_obj_set_size(ui->screen_do58, 20, 20); //Write codes screen_do59 ui->screen_do59 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do59, 255); lv_led_set_color(ui->screen_do59, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do59, 350, 290); lv_obj_set_size(ui->screen_do59, 20, 20); //Write codes screen_do60 ui->screen_do60 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do60, 255); lv_led_set_color(ui->screen_do60, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do60, 450, 290); lv_obj_set_size(ui->screen_do60, 20, 20); //Write codes screen_do61 ui->screen_do61 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do61, 255); lv_led_set_color(ui->screen_do61, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do61, 550, 290); lv_obj_set_size(ui->screen_do61, 20, 20); //Write codes screen_do62 ui->screen_do62 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do62, 255); lv_led_set_color(ui->screen_do62, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do62, 650, 290); lv_obj_set_size(ui->screen_do62, 20, 20); //Write codes screen_do63 ui->screen_do63 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do63, 255); lv_led_set_color(ui->screen_do63, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do63, 750, 290); lv_obj_set_size(ui->screen_do63, 20, 20); //Write codes screen_do64 ui->screen_do64 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do64, 255); lv_led_set_color(ui->screen_do64, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do64, 50, 330); lv_obj_set_size(ui->screen_do64, 20, 20); //Write codes screen_do65 ui->screen_do65 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do65, 255); lv_led_set_color(ui->screen_do65, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do65, 150, 330); lv_obj_set_size(ui->screen_do65, 20, 20); //Write codes screen_do66 ui->screen_do66 = lv_led_create(ui->screen_w_io_tab_2); lv_led_set_brightness(ui->screen_do66, 255); lv_led_set_color(ui->screen_do66, lv_color_hex(0xff0027)); lv_obj_set_pos(ui->screen_do66, 250, 330); lv_obj_set_size(ui->screen_do66, 20, 20); //Write codes screen_name_do0 ui->screen_name_do0 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do0, "DO1"); lv_label_set_long_mode(ui->screen_name_do0, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do0, 80, 13); lv_obj_set_size(ui->screen_name_do0, 55, 14); //Write style for screen_name_do0, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do0, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do0, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do0, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do0, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do0, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do0, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do0, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do0, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do0, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do0, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do0, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do0, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do0, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do0, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do1 ui->screen_name_do1 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do1, "DO2"); lv_label_set_long_mode(ui->screen_name_do1, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do1, 180, 13); lv_obj_set_size(ui->screen_name_do1, 55, 14); //Write style for screen_name_do1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do1, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do1, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do1, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do1, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do2 ui->screen_name_do2 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do2, "DO3"); lv_label_set_long_mode(ui->screen_name_do2, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do2, 280, 13); lv_obj_set_size(ui->screen_name_do2, 55, 14); //Write style for screen_name_do2, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do2, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do2, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do2, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do2, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do3 ui->screen_name_do3 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do3, "DO4"); lv_label_set_long_mode(ui->screen_name_do3, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do3, 380, 13); lv_obj_set_size(ui->screen_name_do3, 55, 14); //Write style for screen_name_do3, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do3, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do3, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do3, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do3, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do4 ui->screen_name_do4 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do4, "DO5"); lv_label_set_long_mode(ui->screen_name_do4, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do4, 480, 13); lv_obj_set_size(ui->screen_name_do4, 55, 14); //Write style for screen_name_do4, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do4, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do4, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do4, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do4, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do4, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do4, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do4, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do4, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do4, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do4, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do4, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do4, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do4, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do4, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do5 ui->screen_name_do5 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do5, "DO6"); lv_label_set_long_mode(ui->screen_name_do5, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do5, 580, 13); lv_obj_set_size(ui->screen_name_do5, 55, 14); //Write style for screen_name_do5, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do5, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do5, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do5, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do5, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do6 ui->screen_name_do6 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do6, "DO7"); lv_label_set_long_mode(ui->screen_name_do6, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do6, 680, 13); lv_obj_set_size(ui->screen_name_do6, 55, 14); //Write style for screen_name_do6, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do6, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do6, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do6, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do6, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do6, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do6, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do6, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do6, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do6, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do6, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do6, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do6, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do6, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do6, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do7 ui->screen_name_do7 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do7, "DO8"); lv_label_set_long_mode(ui->screen_name_do7, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do7, 780, 13); lv_obj_set_size(ui->screen_name_do7, 55, 14); //Write style for screen_name_do7, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do7, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do7, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do7, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do7, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do7, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do7, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do7, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do7, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do7, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do7, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do7, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do7, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do7, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do7, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do8 ui->screen_name_do8 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do8, "DO9"); lv_label_set_long_mode(ui->screen_name_do8, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do8, 80, 53); lv_obj_set_size(ui->screen_name_do8, 55, 14); //Write style for screen_name_do8, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do8, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do8, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do8, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do8, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do8, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do8, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do8, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do8, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do8, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do8, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do8, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do8, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do8, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do8, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do09 ui->screen_name_do09 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do09, "DO10"); lv_label_set_long_mode(ui->screen_name_do09, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do09, 180, 53); lv_obj_set_size(ui->screen_name_do09, 55, 14); //Write style for screen_name_do09, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do09, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do09, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do09, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do09, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do09, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do09, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do09, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do09, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do09, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do09, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do09, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do09, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do09, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do09, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do10 ui->screen_name_do10 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do10, "DO11"); lv_label_set_long_mode(ui->screen_name_do10, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do10, 280, 53); lv_obj_set_size(ui->screen_name_do10, 55, 14); //Write style for screen_name_do10, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do10, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do10, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do10, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do10, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do10, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do10, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do10, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do10, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do10, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do10, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do10, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do10, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do10, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do10, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do11 ui->screen_name_do11 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do11, "DO12"); lv_label_set_long_mode(ui->screen_name_do11, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do11, 380, 53); lv_obj_set_size(ui->screen_name_do11, 55, 14); //Write style for screen_name_do11, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do11, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do11, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do11, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do11, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do11, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do11, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do11, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do11, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do11, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do11, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do11, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do11, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do11, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do11, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do12 ui->screen_name_do12 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do12, "DO13"); lv_label_set_long_mode(ui->screen_name_do12, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do12, 480, 53); lv_obj_set_size(ui->screen_name_do12, 55, 14); //Write style for screen_name_do12, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do12, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do12, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do12, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do12, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do13 ui->screen_name_do13 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do13, "DO14"); lv_label_set_long_mode(ui->screen_name_do13, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do13, 580, 53); lv_obj_set_size(ui->screen_name_do13, 55, 14); //Write style for screen_name_do13, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do13, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do13, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do13, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do13, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do13, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do13, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do13, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do13, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do13, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do13, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do13, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do13, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do13, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do13, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do14 ui->screen_name_do14 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do14, "DO15"); lv_label_set_long_mode(ui->screen_name_do14, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do14, 680, 53); lv_obj_set_size(ui->screen_name_do14, 55, 14); //Write style for screen_name_do14, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do14, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do14, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do14, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do14, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do14, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do14, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do14, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do14, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do14, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do14, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do14, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do14, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do14, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do14, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do15 ui->screen_name_do15 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do15, "DO16"); lv_label_set_long_mode(ui->screen_name_do15, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do15, 780, 51); lv_obj_set_size(ui->screen_name_do15, 55, 14); //Write style for screen_name_do15, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do15, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do15, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do15, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do15, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do15, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do15, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do15, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do15, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do15, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do15, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do15, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do15, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do15, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do15, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do16 ui->screen_name_do16 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do16, "DO17"); lv_label_set_long_mode(ui->screen_name_do16, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do16, 80, 93); lv_obj_set_size(ui->screen_name_do16, 55, 14); //Write style for screen_name_do16, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do16, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do16, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do16, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do16, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do16, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do16, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do16, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do16, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do16, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do16, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do16, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do16, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do16, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do16, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do17 ui->screen_name_do17 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do17, "DO18"); lv_label_set_long_mode(ui->screen_name_do17, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do17, 180, 93); lv_obj_set_size(ui->screen_name_do17, 55, 14); //Write style for screen_name_do17, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do17, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do17, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do17, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do17, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do17, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do17, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do17, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do17, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do17, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do17, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do17, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do17, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do17, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do17, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do18 ui->screen_name_do18 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do18, "DO19"); lv_label_set_long_mode(ui->screen_name_do18, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do18, 280, 93); lv_obj_set_size(ui->screen_name_do18, 55, 14); //Write style for screen_name_do18, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do18, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do18, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do18, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do18, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do18, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do18, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do18, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do18, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do18, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do18, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do18, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do18, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do18, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do18, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do19 ui->screen_name_do19 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do19, "DO20"); lv_label_set_long_mode(ui->screen_name_do19, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do19, 380, 93); lv_obj_set_size(ui->screen_name_do19, 55, 14); //Write style for screen_name_do19, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do19, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do19, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do19, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do19, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do19, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do19, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do19, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do19, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do19, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do19, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do19, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do19, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do19, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do19, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do20 ui->screen_name_do20 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do20, "DO21"); lv_label_set_long_mode(ui->screen_name_do20, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do20, 480, 93); lv_obj_set_size(ui->screen_name_do20, 55, 14); //Write style for screen_name_do20, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do20, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do20, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do20, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do20, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do20, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do20, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do20, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do20, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do20, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do20, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do20, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do20, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do20, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do20, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do21 ui->screen_name_do21 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do21, "DO22"); lv_label_set_long_mode(ui->screen_name_do21, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do21, 580, 93); lv_obj_set_size(ui->screen_name_do21, 55, 14); //Write style for screen_name_do21, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do21, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do21, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do21, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do21, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do21, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do21, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do21, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do21, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do21, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do21, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do21, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do21, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do21, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do21, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do22 ui->screen_name_do22 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do22, "DO23"); lv_label_set_long_mode(ui->screen_name_do22, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do22, 680, 93); lv_obj_set_size(ui->screen_name_do22, 55, 14); //Write style for screen_name_do22, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do22, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do22, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do22, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do22, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do22, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do22, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do22, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do22, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do22, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do22, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do22, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do22, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do22, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do22, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do23 ui->screen_name_do23 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do23, "DO24"); lv_label_set_long_mode(ui->screen_name_do23, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do23, 780, 93); lv_obj_set_size(ui->screen_name_do23, 55, 14); //Write style for screen_name_do23, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do23, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do23, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do23, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do23, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do23, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do23, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do23, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do23, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do23, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do23, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do23, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do23, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do23, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do23, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do24 ui->screen_name_do24 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do24, "DO25"); lv_label_set_long_mode(ui->screen_name_do24, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do24, 80, 133); lv_obj_set_size(ui->screen_name_do24, 55, 14); //Write style for screen_name_do24, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do24, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do24, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do24, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do24, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do24, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do24, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do24, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do24, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do24, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do24, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do24, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do24, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do24, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do24, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do25 ui->screen_name_do25 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do25, "DO26"); lv_label_set_long_mode(ui->screen_name_do25, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do25, 180, 133); lv_obj_set_size(ui->screen_name_do25, 55, 14); //Write style for screen_name_do25, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do25, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do25, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do25, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do25, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do25, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do25, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do25, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do25, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do25, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do25, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do25, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do25, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do25, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do25, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do26 ui->screen_name_do26 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do26, "DO27"); lv_label_set_long_mode(ui->screen_name_do26, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do26, 280, 133); lv_obj_set_size(ui->screen_name_do26, 55, 14); //Write style for screen_name_do26, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do26, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do26, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do26, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do26, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do26, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do26, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do26, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do26, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do26, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do26, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do26, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do26, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do26, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do26, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do27 ui->screen_name_do27 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do27, "DO28"); lv_label_set_long_mode(ui->screen_name_do27, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do27, 380, 133); lv_obj_set_size(ui->screen_name_do27, 55, 14); //Write style for screen_name_do27, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do27, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do27, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do27, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do27, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do27, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do27, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do27, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do27, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do27, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do27, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do27, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do27, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do27, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do27, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do28 ui->screen_name_do28 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do28, "DO29"); lv_label_set_long_mode(ui->screen_name_do28, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do28, 480, 133); lv_obj_set_size(ui->screen_name_do28, 55, 14); //Write style for screen_name_do28, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do28, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do28, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do28, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do28, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do28, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do28, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do28, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do28, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do28, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do28, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do28, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do28, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do28, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do28, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do29 ui->screen_name_do29 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do29, "DO30"); lv_label_set_long_mode(ui->screen_name_do29, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do29, 580, 133); lv_obj_set_size(ui->screen_name_do29, 55, 14); //Write style for screen_name_do29, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do29, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do29, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do29, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do29, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do29, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do29, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do29, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do29, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do29, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do29, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do29, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do29, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do29, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do29, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do30 ui->screen_name_do30 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do30, "DO31"); lv_label_set_long_mode(ui->screen_name_do30, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do30, 680, 133); lv_obj_set_size(ui->screen_name_do30, 55, 14); //Write style for screen_name_do30, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do30, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do30, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do30, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do30, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do30, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do30, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do30, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do30, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do30, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do30, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do30, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do30, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do30, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do30, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do31 ui->screen_name_do31 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do31, "DO32"); lv_label_set_long_mode(ui->screen_name_do31, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do31, 780, 133); lv_obj_set_size(ui->screen_name_do31, 55, 14); //Write style for screen_name_do31, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do31, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do31, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do31, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do31, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do31, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do31, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do31, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do31, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do31, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do31, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do31, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do31, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do31, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do31, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do32 ui->screen_name_do32 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do32, "DO33"); lv_label_set_long_mode(ui->screen_name_do32, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do32, 80, 173); lv_obj_set_size(ui->screen_name_do32, 55, 14); //Write style for screen_name_do32, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do32, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do32, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do32, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do32, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do32, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do32, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do32, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do32, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do32, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do32, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do32, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do32, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do32, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do32, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do33 ui->screen_name_do33 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do33, "DO34"); lv_label_set_long_mode(ui->screen_name_do33, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do33, 180, 173); lv_obj_set_size(ui->screen_name_do33, 55, 14); //Write style for screen_name_do33, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do33, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do33, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do33, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do33, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do33, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do33, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do33, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do33, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do33, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do33, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do33, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do33, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do33, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do33, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do34 ui->screen_name_do34 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do34, "DO35"); lv_label_set_long_mode(ui->screen_name_do34, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do34, 280, 173); lv_obj_set_size(ui->screen_name_do34, 55, 14); //Write style for screen_name_do34, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do34, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do34, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do34, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do34, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do34, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do34, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do34, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do34, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do34, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do34, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do34, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do34, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do34, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do34, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do35 ui->screen_name_do35 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do35, "DO36"); lv_label_set_long_mode(ui->screen_name_do35, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do35, 380, 173); lv_obj_set_size(ui->screen_name_do35, 55, 14); //Write style for screen_name_do35, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do35, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do35, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do35, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do35, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do35, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do35, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do35, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do35, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do35, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do35, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do35, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do35, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do35, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do35, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do36 ui->screen_name_do36 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do36, "DO37"); lv_label_set_long_mode(ui->screen_name_do36, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do36, 480, 173); lv_obj_set_size(ui->screen_name_do36, 55, 14); //Write style for screen_name_do36, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do36, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do36, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do36, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do36, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do36, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do36, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do36, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do36, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do36, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do36, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do36, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do36, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do36, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do36, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do37 ui->screen_name_do37 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do37, "DO38"); lv_label_set_long_mode(ui->screen_name_do37, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do37, 580, 173); lv_obj_set_size(ui->screen_name_do37, 55, 14); //Write style for screen_name_do37, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do37, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do37, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do37, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do37, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do37, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do37, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do37, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do37, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do37, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do37, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do37, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do37, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do37, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do37, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do38 ui->screen_name_do38 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do38, "DO39"); lv_label_set_long_mode(ui->screen_name_do38, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do38, 680, 173); lv_obj_set_size(ui->screen_name_do38, 55, 14); //Write style for screen_name_do38, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do38, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do38, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do38, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do38, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do38, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do38, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do38, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do38, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do38, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do38, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do38, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do38, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do38, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do38, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do39 ui->screen_name_do39 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do39, "DO40"); lv_label_set_long_mode(ui->screen_name_do39, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do39, 780, 169); lv_obj_set_size(ui->screen_name_do39, 55, 14); //Write style for screen_name_do39, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do39, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do39, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do39, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do39, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do39, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do39, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do39, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do39, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do39, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do39, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do39, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do39, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do39, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do39, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do40 ui->screen_name_do40 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do40, "DO41"); lv_label_set_long_mode(ui->screen_name_do40, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do40, 80, 213); lv_obj_set_size(ui->screen_name_do40, 55, 14); //Write style for screen_name_do40, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do40, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do40, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do40, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do40, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do40, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do40, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do40, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do40, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do40, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do40, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do40, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do40, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do40, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do40, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do41 ui->screen_name_do41 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do41, "DO42"); lv_label_set_long_mode(ui->screen_name_do41, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do41, 180, 213); lv_obj_set_size(ui->screen_name_do41, 55, 14); //Write style for screen_name_do41, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do41, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do41, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do41, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do41, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do41, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do41, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do41, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do41, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do41, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do41, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do41, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do41, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do41, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do41, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do42 ui->screen_name_do42 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do42, "DO43"); lv_label_set_long_mode(ui->screen_name_do42, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do42, 280, 213); lv_obj_set_size(ui->screen_name_do42, 55, 14); //Write style for screen_name_do42, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do42, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do42, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do42, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do42, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do42, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do42, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do42, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do42, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do42, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do42, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do42, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do42, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do42, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do42, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do43 ui->screen_name_do43 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do43, "DO44"); lv_label_set_long_mode(ui->screen_name_do43, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do43, 380, 213); lv_obj_set_size(ui->screen_name_do43, 55, 14); //Write style for screen_name_do43, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do43, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do43, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do43, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do43, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do43, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do43, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do43, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do43, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do43, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do43, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do43, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do43, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do43, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do43, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do44 ui->screen_name_do44 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do44, "DO45"); lv_label_set_long_mode(ui->screen_name_do44, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do44, 480, 213); lv_obj_set_size(ui->screen_name_do44, 55, 14); //Write style for screen_name_do44, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do44, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do44, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do44, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do44, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do44, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do44, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do44, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do44, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do44, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do44, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do44, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do44, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do44, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do44, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do45 ui->screen_name_do45 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do45, "DO46"); lv_label_set_long_mode(ui->screen_name_do45, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do45, 580, 213); lv_obj_set_size(ui->screen_name_do45, 55, 14); //Write style for screen_name_do45, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do45, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do45, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do45, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do45, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do45, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do45, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do45, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do45, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do45, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do45, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do45, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do45, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do45, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do45, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do46 ui->screen_name_do46 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do46, "DO47"); lv_label_set_long_mode(ui->screen_name_do46, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do46, 680, 213); lv_obj_set_size(ui->screen_name_do46, 55, 14); //Write style for screen_name_do46, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do46, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do46, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do46, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do46, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do46, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do46, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do46, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do46, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do46, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do46, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do46, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do46, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do46, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do46, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do47 ui->screen_name_do47 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do47, "DO48"); lv_label_set_long_mode(ui->screen_name_do47, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do47, 780, 213); lv_obj_set_size(ui->screen_name_do47, 55, 14); //Write style for screen_name_do47, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do47, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do47, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do47, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do47, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do47, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do47, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do47, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do47, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do47, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do47, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do47, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do47, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do47, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do47, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do48 ui->screen_name_do48 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do48, "DO49"); lv_label_set_long_mode(ui->screen_name_do48, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do48, 80, 253); lv_obj_set_size(ui->screen_name_do48, 55, 14); //Write style for screen_name_do48, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do48, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do48, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do48, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do48, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do48, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do48, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do48, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do48, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do48, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do48, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do48, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do48, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do48, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do48, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do49 ui->screen_name_do49 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do49, "DO50"); lv_label_set_long_mode(ui->screen_name_do49, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do49, 180, 253); lv_obj_set_size(ui->screen_name_do49, 55, 14); //Write style for screen_name_do49, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do49, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do49, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do49, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do49, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do49, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do49, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do49, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do49, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do49, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do49, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do49, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do49, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do49, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do49, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do50 ui->screen_name_do50 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do50, "DO51"); lv_label_set_long_mode(ui->screen_name_do50, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do50, 280, 253); lv_obj_set_size(ui->screen_name_do50, 55, 14); //Write style for screen_name_do50, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do50, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do50, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do50, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do50, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do50, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do50, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do50, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do50, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do50, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do50, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do50, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do50, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do50, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do50, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do51 ui->screen_name_do51 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do51, "DO52"); lv_label_set_long_mode(ui->screen_name_do51, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do51, 380, 253); lv_obj_set_size(ui->screen_name_do51, 55, 14); //Write style for screen_name_do51, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do51, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do51, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do51, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do51, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do51, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do51, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do51, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do51, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do51, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do51, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do51, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do51, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do51, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do51, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do52 ui->screen_name_do52 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do52, "DO53"); lv_label_set_long_mode(ui->screen_name_do52, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do52, 480, 253); lv_obj_set_size(ui->screen_name_do52, 55, 14); //Write style for screen_name_do52, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do52, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do52, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do52, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do52, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do52, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do52, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do52, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do52, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do52, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do52, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do52, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do52, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do52, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do52, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do53 ui->screen_name_do53 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do53, "DO54"); lv_label_set_long_mode(ui->screen_name_do53, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do53, 580, 253); lv_obj_set_size(ui->screen_name_do53, 55, 14); //Write style for screen_name_do53, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do53, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do53, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do53, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do53, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do53, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do53, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do53, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do53, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do53, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do53, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do53, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do53, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do53, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do53, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do54 ui->screen_name_do54 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do54, "DO55"); lv_label_set_long_mode(ui->screen_name_do54, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do54, 680, 253); lv_obj_set_size(ui->screen_name_do54, 55, 14); //Write style for screen_name_do54, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do54, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do54, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do54, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do54, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do54, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do54, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do54, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do54, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do54, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do54, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do54, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do54, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do54, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do54, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do55 ui->screen_name_do55 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do55, "DO56"); lv_label_set_long_mode(ui->screen_name_do55, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do55, 780, 253); lv_obj_set_size(ui->screen_name_do55, 55, 14); //Write style for screen_name_do55, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do55, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do55, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do55, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do55, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do55, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do55, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do55, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do55, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do55, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do55, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do55, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do55, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do55, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do55, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do56 ui->screen_name_do56 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do56, "DO57"); lv_label_set_long_mode(ui->screen_name_do56, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do56, 80, 293); lv_obj_set_size(ui->screen_name_do56, 55, 14); //Write style for screen_name_do56, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do56, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do56, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do56, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do56, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do56, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do56, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do56, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do56, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do56, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do56, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do56, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do56, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do56, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do56, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do57 ui->screen_name_do57 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do57, "DO58"); lv_label_set_long_mode(ui->screen_name_do57, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do57, 180, 293); lv_obj_set_size(ui->screen_name_do57, 55, 14); //Write style for screen_name_do57, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do57, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do57, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do57, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do57, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do57, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do57, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do57, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do57, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do57, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do57, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do57, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do57, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do57, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do57, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do58 ui->screen_name_do58 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do58, "DO59"); lv_label_set_long_mode(ui->screen_name_do58, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do58, 280, 293); lv_obj_set_size(ui->screen_name_do58, 55, 14); //Write style for screen_name_do58, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do58, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do58, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do58, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do58, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do58, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do58, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do58, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do58, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do58, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do58, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do58, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do58, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do58, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do58, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do59 ui->screen_name_do59 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do59, "DO60"); lv_label_set_long_mode(ui->screen_name_do59, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do59, 380, 293); lv_obj_set_size(ui->screen_name_do59, 55, 14); //Write style for screen_name_do59, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do59, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do59, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do59, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do59, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do59, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do59, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do59, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do59, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do59, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do59, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do59, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do59, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do59, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do59, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do60 ui->screen_name_do60 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do60, "DO61"); lv_label_set_long_mode(ui->screen_name_do60, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do60, 480, 293); lv_obj_set_size(ui->screen_name_do60, 55, 14); //Write style for screen_name_do60, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do60, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do60, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do60, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do60, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do60, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do60, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do60, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do60, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do60, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do60, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do60, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do60, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do60, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do60, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do61 ui->screen_name_do61 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do61, "DO62"); lv_label_set_long_mode(ui->screen_name_do61, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do61, 580, 293); lv_obj_set_size(ui->screen_name_do61, 55, 14); //Write style for screen_name_do61, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do61, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do61, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do61, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do61, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do61, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do61, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do61, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do61, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do61, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do61, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do61, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do61, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do61, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do61, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do62 ui->screen_name_do62 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do62, "DO63"); lv_label_set_long_mode(ui->screen_name_do62, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do62, 680, 293); lv_obj_set_size(ui->screen_name_do62, 55, 14); //Write style for screen_name_do62, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do62, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do62, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do62, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do62, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do62, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do62, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do62, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do62, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do62, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do62, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do62, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do62, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do62, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do62, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do63 ui->screen_name_do63 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do63, "DO64"); lv_label_set_long_mode(ui->screen_name_do63, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do63, 780, 293); lv_obj_set_size(ui->screen_name_do63, 55, 14); //Write style for screen_name_do63, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do63, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do63, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do63, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do63, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do63, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do63, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do63, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do63, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do63, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do63, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do63, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do63, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do63, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do63, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do64 ui->screen_name_do64 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do64, "DO65"); lv_label_set_long_mode(ui->screen_name_do64, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do64, 80, 333); lv_obj_set_size(ui->screen_name_do64, 55, 14); //Write style for screen_name_do64, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do64, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do64, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do64, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do64, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do64, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do64, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do64, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do64, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do64, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do64, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do64, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do64, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do64, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do64, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do65 ui->screen_name_do65 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do65, "DO66"); lv_label_set_long_mode(ui->screen_name_do65, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do65, 180, 333); lv_obj_set_size(ui->screen_name_do65, 55, 14); //Write style for screen_name_do65, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do65, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do65, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do65, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do65, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do65, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do65, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do65, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do65, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do65, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do65, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do65, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do65, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do65, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do65, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_name_do66 ui->screen_name_do66 = lv_label_create(ui->screen_w_io_tab_2); lv_label_set_text(ui->screen_name_do66, "DO67"); lv_label_set_long_mode(ui->screen_name_do66, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_name_do66, 280, 333); lv_obj_set_size(ui->screen_name_do66, 55, 14); //Write style for screen_name_do66, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_name_do66, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_name_do66, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_name_do66, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_name_do66, &lv_font_montserratMedium_14, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_name_do66, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_name_do66, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_name_do66, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_name_do66, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_name_do66, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_name_do66, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_name_do66, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_name_do66, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_name_do66, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_name_do66, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes AIO ui->screen_w_io_tab_3 = lv_tabview_add_tab(ui->screen_w_io,"AIO"); lv_obj_t * screen_w_io_tab_3_label = lv_label_create(ui->screen_w_io_tab_3); lv_label_set_text(screen_w_io_tab_3_label, ""); //Write codes screen_aio ui->screen_aio = lv_table_create(ui->screen_w_io_tab_3); lv_table_set_col_cnt(ui->screen_aio,4); lv_table_set_row_cnt(ui->screen_aio,12); lv_table_set_cell_value(ui->screen_aio,0,0,"AI"); lv_table_set_cell_value(ui->screen_aio,1,0,"Apple"); lv_table_set_cell_value(ui->screen_aio,2,0,"Banana"); lv_table_set_cell_value(ui->screen_aio,3,0,"Citron"); lv_table_set_cell_value(ui->screen_aio,4,0,"Name"); lv_table_set_cell_value(ui->screen_aio,5,0,"Name"); lv_table_set_cell_value(ui->screen_aio,6,0,"Name"); lv_table_set_cell_value(ui->screen_aio,7,0,"Name"); lv_table_set_cell_value(ui->screen_aio,8,0,"Name"); lv_table_set_cell_value(ui->screen_aio,9,0,"Name"); lv_table_set_cell_value(ui->screen_aio,10,0,"Name"); lv_table_set_cell_value(ui->screen_aio,11,0,"Name"); lv_table_set_cell_value(ui->screen_aio,0,1,"AiValue"); lv_table_set_cell_value(ui->screen_aio,1,1,"$1"); lv_table_set_cell_value(ui->screen_aio,2,1,"$2"); lv_table_set_cell_value(ui->screen_aio,3,1,"$3"); lv_table_set_cell_value(ui->screen_aio,4,1,"Price"); lv_table_set_cell_value(ui->screen_aio,5,1,"Price"); lv_table_set_cell_value(ui->screen_aio,6,1,"Price"); lv_table_set_cell_value(ui->screen_aio,7,1,"Price"); lv_table_set_cell_value(ui->screen_aio,8,1,"Price"); lv_table_set_cell_value(ui->screen_aio,9,1,"Price"); lv_table_set_cell_value(ui->screen_aio,10,1,"Price"); lv_table_set_cell_value(ui->screen_aio,11,1,"Price"); lv_table_set_cell_value(ui->screen_aio,0,2,"AO"); lv_table_set_cell_value(ui->screen_aio,1,2,"0"); lv_table_set_cell_value(ui->screen_aio,2,2,"0"); lv_table_set_cell_value(ui->screen_aio,3,2,"0"); lv_table_set_cell_value(ui->screen_aio,4,2,"title"); lv_table_set_cell_value(ui->screen_aio,5,2,"title"); lv_table_set_cell_value(ui->screen_aio,6,2,"title"); lv_table_set_cell_value(ui->screen_aio,7,2,"title"); lv_table_set_cell_value(ui->screen_aio,8,2,"title"); lv_table_set_cell_value(ui->screen_aio,9,2,"title"); lv_table_set_cell_value(ui->screen_aio,10,2,"title"); lv_table_set_cell_value(ui->screen_aio,11,2,"title"); lv_table_set_cell_value(ui->screen_aio,0,3,"AoValue"); lv_table_set_cell_value(ui->screen_aio,1,3,"0"); lv_table_set_cell_value(ui->screen_aio,2,3,"0"); lv_table_set_cell_value(ui->screen_aio,3,3,"0"); lv_table_set_cell_value(ui->screen_aio,4,3,"title"); lv_table_set_cell_value(ui->screen_aio,5,3,"title"); lv_table_set_cell_value(ui->screen_aio,6,3,"title"); lv_table_set_cell_value(ui->screen_aio,7,3,"title"); lv_table_set_cell_value(ui->screen_aio,8,3,"title"); lv_table_set_cell_value(ui->screen_aio,9,3,"title"); lv_table_set_cell_value(ui->screen_aio,10,3,"title"); lv_table_set_cell_value(ui->screen_aio,11,3,"title"); lv_obj_set_pos(ui->screen_aio, 0, 0); lv_obj_set_scrollbar_mode(ui->screen_aio, LV_SCROLLBAR_MODE_AUTO); lv_obj_add_flag(ui->screen_aio, LV_OBJ_FLAG_CLICKABLE); lv_obj_add_flag(ui->screen_aio, LV_OBJ_FLAG_SCROLLABLE); //Write style for screen_aio, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_pad_top(ui->screen_aio, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_aio, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_aio, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_aio, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_aio, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_aio, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_aio, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_aio, 2, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_opa(ui->screen_aio, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_color(ui->screen_aio, lv_color_hex(0xd5dee6), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_side(ui->screen_aio, LV_BORDER_SIDE_FULL, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_aio, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_aio, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write style for screen_aio, Part: LV_PART_ITEMS, State: LV_STATE_DEFAULT. lv_obj_set_style_text_color(ui->screen_aio, lv_color_hex(0x393c41), LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_aio, &lv_font_montserratMedium_12, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_aio, 255, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_aio, LV_TEXT_ALIGN_CENTER, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_aio, 0, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_aio, 3, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_border_opa(ui->screen_aio, 255, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_border_color(ui->screen_aio, lv_color_hex(0xd5dee6), LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_border_side(ui->screen_aio, LV_BORDER_SIDE_FULL, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_aio, 10, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_aio, 10, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_aio, 10, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_aio, 10, LV_PART_ITEMS|LV_STATE_DEFAULT); //Write codes SET ui->screen_w_io_tab_4 = lv_tabview_add_tab(ui->screen_w_io,"SET"); lv_obj_t * screen_w_io_tab_4_label = lv_label_create(ui->screen_w_io_tab_4); lv_label_set_text(screen_w_io_tab_4_label, ""); //Write codes screen_sys_set ui->screen_sys_set = lv_table_create(ui->screen_w_io_tab_4); lv_table_set_col_cnt(ui->screen_sys_set,2); lv_table_set_row_cnt(ui->screen_sys_set,12); lv_table_set_cell_value(ui->screen_sys_set,0,0,"NAME"); lv_table_set_cell_value(ui->screen_sys_set,1,0,"Apple"); lv_table_set_cell_value(ui->screen_sys_set,2,0,"Banana"); lv_table_set_cell_value(ui->screen_sys_set,3,0,"Citron"); lv_table_set_cell_value(ui->screen_sys_set,4,0,"Name"); lv_table_set_cell_value(ui->screen_sys_set,5,0,"Name"); lv_table_set_cell_value(ui->screen_sys_set,6,0,"Name"); lv_table_set_cell_value(ui->screen_sys_set,7,0,"Name"); lv_table_set_cell_value(ui->screen_sys_set,8,0,"Name"); lv_table_set_cell_value(ui->screen_sys_set,9,0,"Name"); lv_table_set_cell_value(ui->screen_sys_set,10,0,"Name"); lv_table_set_cell_value(ui->screen_sys_set,11,0,"Name"); lv_table_set_cell_value(ui->screen_sys_set,0,1,"Value"); lv_table_set_cell_value(ui->screen_sys_set,1,1,"$1"); lv_table_set_cell_value(ui->screen_sys_set,2,1,"$2"); lv_table_set_cell_value(ui->screen_sys_set,3,1,"$3"); lv_table_set_cell_value(ui->screen_sys_set,4,1,"Price"); lv_table_set_cell_value(ui->screen_sys_set,5,1,"Price"); lv_table_set_cell_value(ui->screen_sys_set,6,1,"Price"); lv_table_set_cell_value(ui->screen_sys_set,7,1,"Price"); lv_table_set_cell_value(ui->screen_sys_set,8,1,"Price"); lv_table_set_cell_value(ui->screen_sys_set,9,1,"Price"); lv_table_set_cell_value(ui->screen_sys_set,10,1,"Price"); lv_table_set_cell_value(ui->screen_sys_set,11,1,"Price"); lv_obj_set_pos(ui->screen_sys_set, 0, 0); lv_obj_set_scrollbar_mode(ui->screen_sys_set, LV_SCROLLBAR_MODE_AUTO); lv_obj_add_flag(ui->screen_sys_set, LV_OBJ_FLAG_CLICKABLE); lv_obj_add_flag(ui->screen_sys_set, LV_OBJ_FLAG_SCROLLABLE); //Write style for screen_sys_set, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_pad_top(ui->screen_sys_set, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_sys_set, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_sys_set, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_sys_set, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_sys_set, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_sys_set, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_sys_set, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_sys_set, 2, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_opa(ui->screen_sys_set, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_color(ui->screen_sys_set, lv_color_hex(0xd5dee6), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_side(ui->screen_sys_set, LV_BORDER_SIDE_FULL, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_sys_set, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_sys_set, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write style for screen_sys_set, Part: LV_PART_ITEMS, State: LV_STATE_DEFAULT. lv_obj_set_style_text_color(ui->screen_sys_set, lv_color_hex(0x393c41), LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_sys_set, &lv_font_montserratMedium_12, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_sys_set, 255, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_sys_set, LV_TEXT_ALIGN_CENTER, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_sys_set, 0, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_sys_set, 3, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_border_opa(ui->screen_sys_set, 255, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_border_color(ui->screen_sys_set, lv_color_hex(0xd5dee6), LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_border_side(ui->screen_sys_set, LV_BORDER_SIDE_FULL, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_sys_set, 10, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_sys_set, 10, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_sys_set, 10, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_sys_set, 10, LV_PART_ITEMS|LV_STATE_DEFAULT); //Write codes 程序 ui->screen_tabview_tab_4 = lv_tabview_add_tab(ui->screen_tabview,"程序"); lv_obj_t * screen_tabview_tab_4_label = lv_label_create(ui->screen_tabview_tab_4); lv_label_set_text(screen_tabview_tab_4_label, ""); //Write codes screen_proess_set ui->screen_proess_set = lv_list_create(ui->screen_tabview_tab_4); ui->screen_proess_set_item0 = lv_list_add_btn(ui->screen_proess_set, LV_SYMBOL_SAVE, "save"); lv_obj_set_pos(ui->screen_proess_set, 0, 0); lv_obj_set_size(ui->screen_proess_set, 300, 460); lv_obj_set_scrollbar_mode(ui->screen_proess_set, LV_SCROLLBAR_MODE_ACTIVE); //Write style state: LV_STATE_DEFAULT for &style_screen_proess_set_main_main_default static lv_style_t style_screen_proess_set_main_main_default; ui_init_style(&style_screen_proess_set_main_main_default); lv_style_set_pad_top(&style_screen_proess_set_main_main_default, 5); lv_style_set_pad_left(&style_screen_proess_set_main_main_default, 5); lv_style_set_pad_right(&style_screen_proess_set_main_main_default, 5); lv_style_set_pad_bottom(&style_screen_proess_set_main_main_default, 5); lv_style_set_bg_opa(&style_screen_proess_set_main_main_default, 255); lv_style_set_bg_color(&style_screen_proess_set_main_main_default, lv_color_hex(0xffffff)); lv_style_set_bg_grad_dir(&style_screen_proess_set_main_main_default, LV_GRAD_DIR_NONE); lv_style_set_border_width(&style_screen_proess_set_main_main_default, 1); lv_style_set_border_opa(&style_screen_proess_set_main_main_default, 255); lv_style_set_border_color(&style_screen_proess_set_main_main_default, lv_color_hex(0xe1e6ee)); lv_style_set_border_side(&style_screen_proess_set_main_main_default, LV_BORDER_SIDE_FULL); lv_style_set_radius(&style_screen_proess_set_main_main_default, 3); lv_style_set_shadow_width(&style_screen_proess_set_main_main_default, 0); lv_obj_add_style(ui->screen_proess_set, &style_screen_proess_set_main_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); //Write style state: LV_STATE_DEFAULT for &style_screen_proess_set_main_scrollbar_default static lv_style_t style_screen_proess_set_main_scrollbar_default; ui_init_style(&style_screen_proess_set_main_scrollbar_default); lv_style_set_radius(&style_screen_proess_set_main_scrollbar_default, 3); lv_style_set_bg_opa(&style_screen_proess_set_main_scrollbar_default, 255); lv_style_set_bg_color(&style_screen_proess_set_main_scrollbar_default, lv_color_hex(0xffffff)); lv_style_set_bg_grad_dir(&style_screen_proess_set_main_scrollbar_default, LV_GRAD_DIR_NONE); lv_obj_add_style(ui->screen_proess_set, &style_screen_proess_set_main_scrollbar_default, LV_PART_SCROLLBAR|LV_STATE_DEFAULT); //Write style state: LV_STATE_DEFAULT for &style_screen_proess_set_extra_btns_main_default static lv_style_t style_screen_proess_set_extra_btns_main_default; ui_init_style(&style_screen_proess_set_extra_btns_main_default); lv_style_set_pad_top(&style_screen_proess_set_extra_btns_main_default, 5); lv_style_set_pad_left(&style_screen_proess_set_extra_btns_main_default, 5); lv_style_set_pad_right(&style_screen_proess_set_extra_btns_main_default, 5); lv_style_set_pad_bottom(&style_screen_proess_set_extra_btns_main_default, 5); lv_style_set_border_width(&style_screen_proess_set_extra_btns_main_default, 0); lv_style_set_text_color(&style_screen_proess_set_extra_btns_main_default, lv_color_hex(0x0D3055)); lv_style_set_text_font(&style_screen_proess_set_extra_btns_main_default, &lv_font_montserratMedium_12); lv_style_set_text_opa(&style_screen_proess_set_extra_btns_main_default, 255); lv_style_set_radius(&style_screen_proess_set_extra_btns_main_default, 3); lv_style_set_bg_opa(&style_screen_proess_set_extra_btns_main_default, 255); lv_style_set_bg_color(&style_screen_proess_set_extra_btns_main_default, lv_color_hex(0xffffff)); lv_style_set_bg_grad_dir(&style_screen_proess_set_extra_btns_main_default, LV_GRAD_DIR_NONE); lv_obj_add_style(ui->screen_proess_set_item0, &style_screen_proess_set_extra_btns_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); //Write style state: LV_STATE_DEFAULT for &style_screen_proess_set_extra_texts_main_default static lv_style_t style_screen_proess_set_extra_texts_main_default; ui_init_style(&style_screen_proess_set_extra_texts_main_default); lv_style_set_pad_top(&style_screen_proess_set_extra_texts_main_default, 5); lv_style_set_pad_left(&style_screen_proess_set_extra_texts_main_default, 5); lv_style_set_pad_right(&style_screen_proess_set_extra_texts_main_default, 5); lv_style_set_pad_bottom(&style_screen_proess_set_extra_texts_main_default, 5); lv_style_set_border_width(&style_screen_proess_set_extra_texts_main_default, 0); lv_style_set_text_color(&style_screen_proess_set_extra_texts_main_default, lv_color_hex(0x0D3055)); lv_style_set_text_font(&style_screen_proess_set_extra_texts_main_default, &lv_font_montserratMedium_12); lv_style_set_text_opa(&style_screen_proess_set_extra_texts_main_default, 255); lv_style_set_radius(&style_screen_proess_set_extra_texts_main_default, 3); lv_style_set_transform_width(&style_screen_proess_set_extra_texts_main_default, 0); lv_style_set_bg_opa(&style_screen_proess_set_extra_texts_main_default, 255); lv_style_set_bg_color(&style_screen_proess_set_extra_texts_main_default, lv_color_hex(0xffffff)); lv_style_set_bg_grad_dir(&style_screen_proess_set_extra_texts_main_default, LV_GRAD_DIR_NONE); //Write codes screen_step_set ui->screen_step_set = lv_list_create(ui->screen_tabview_tab_4); ui->screen_step_set_item0 = lv_list_add_btn(ui->screen_step_set, LV_SYMBOL_SAVE, "save"); lv_obj_set_pos(ui->screen_step_set, 305, 55); lv_obj_set_size(ui->screen_step_set, 679, 350); lv_obj_set_scrollbar_mode(ui->screen_step_set, LV_SCROLLBAR_MODE_ACTIVE); //Write style state: LV_STATE_DEFAULT for &style_screen_step_set_main_main_default static lv_style_t style_screen_step_set_main_main_default; ui_init_style(&style_screen_step_set_main_main_default); lv_style_set_pad_top(&style_screen_step_set_main_main_default, 5); lv_style_set_pad_left(&style_screen_step_set_main_main_default, 5); lv_style_set_pad_right(&style_screen_step_set_main_main_default, 5); lv_style_set_pad_bottom(&style_screen_step_set_main_main_default, 5); lv_style_set_bg_opa(&style_screen_step_set_main_main_default, 255); lv_style_set_bg_color(&style_screen_step_set_main_main_default, lv_color_hex(0xffffff)); lv_style_set_bg_grad_dir(&style_screen_step_set_main_main_default, LV_GRAD_DIR_NONE); lv_style_set_border_width(&style_screen_step_set_main_main_default, 1); lv_style_set_border_opa(&style_screen_step_set_main_main_default, 255); lv_style_set_border_color(&style_screen_step_set_main_main_default, lv_color_hex(0xe1e6ee)); lv_style_set_border_side(&style_screen_step_set_main_main_default, LV_BORDER_SIDE_FULL); lv_style_set_radius(&style_screen_step_set_main_main_default, 3); lv_style_set_shadow_width(&style_screen_step_set_main_main_default, 0); lv_obj_add_style(ui->screen_step_set, &style_screen_step_set_main_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); //Write style state: LV_STATE_DEFAULT for &style_screen_step_set_main_scrollbar_default static lv_style_t style_screen_step_set_main_scrollbar_default; ui_init_style(&style_screen_step_set_main_scrollbar_default); lv_style_set_radius(&style_screen_step_set_main_scrollbar_default, 3); lv_style_set_bg_opa(&style_screen_step_set_main_scrollbar_default, 255); lv_style_set_bg_color(&style_screen_step_set_main_scrollbar_default, lv_color_hex(0xffffff)); lv_style_set_bg_grad_dir(&style_screen_step_set_main_scrollbar_default, LV_GRAD_DIR_NONE); lv_obj_add_style(ui->screen_step_set, &style_screen_step_set_main_scrollbar_default, LV_PART_SCROLLBAR|LV_STATE_DEFAULT); //Write style state: LV_STATE_DEFAULT for &style_screen_step_set_extra_btns_main_default static lv_style_t style_screen_step_set_extra_btns_main_default; ui_init_style(&style_screen_step_set_extra_btns_main_default); lv_style_set_pad_top(&style_screen_step_set_extra_btns_main_default, 5); lv_style_set_pad_left(&style_screen_step_set_extra_btns_main_default, 5); lv_style_set_pad_right(&style_screen_step_set_extra_btns_main_default, 5); lv_style_set_pad_bottom(&style_screen_step_set_extra_btns_main_default, 5); lv_style_set_border_width(&style_screen_step_set_extra_btns_main_default, 0); lv_style_set_text_color(&style_screen_step_set_extra_btns_main_default, lv_color_hex(0x0D3055)); lv_style_set_text_font(&style_screen_step_set_extra_btns_main_default, &lv_font_montserratMedium_12); lv_style_set_text_opa(&style_screen_step_set_extra_btns_main_default, 255); lv_style_set_radius(&style_screen_step_set_extra_btns_main_default, 3); lv_style_set_bg_opa(&style_screen_step_set_extra_btns_main_default, 255); lv_style_set_bg_color(&style_screen_step_set_extra_btns_main_default, lv_color_hex(0xffffff)); lv_style_set_bg_grad_dir(&style_screen_step_set_extra_btns_main_default, LV_GRAD_DIR_NONE); lv_obj_add_style(ui->screen_step_set_item0, &style_screen_step_set_extra_btns_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); //Write style state: LV_STATE_DEFAULT for &style_screen_step_set_extra_texts_main_default static lv_style_t style_screen_step_set_extra_texts_main_default; ui_init_style(&style_screen_step_set_extra_texts_main_default); lv_style_set_pad_top(&style_screen_step_set_extra_texts_main_default, 5); lv_style_set_pad_left(&style_screen_step_set_extra_texts_main_default, 5); lv_style_set_pad_right(&style_screen_step_set_extra_texts_main_default, 5); lv_style_set_pad_bottom(&style_screen_step_set_extra_texts_main_default, 5); lv_style_set_border_width(&style_screen_step_set_extra_texts_main_default, 0); lv_style_set_text_color(&style_screen_step_set_extra_texts_main_default, lv_color_hex(0x0D3055)); lv_style_set_text_font(&style_screen_step_set_extra_texts_main_default, &lv_font_montserratMedium_12); lv_style_set_text_opa(&style_screen_step_set_extra_texts_main_default, 255); lv_style_set_radius(&style_screen_step_set_extra_texts_main_default, 3); lv_style_set_transform_width(&style_screen_step_set_extra_texts_main_default, 0); lv_style_set_bg_opa(&style_screen_step_set_extra_texts_main_default, 255); lv_style_set_bg_color(&style_screen_step_set_extra_texts_main_default, lv_color_hex(0xffffff)); lv_style_set_bg_grad_dir(&style_screen_step_set_extra_texts_main_default, LV_GRAD_DIR_NONE); //Write codes screen_pname_set ui->screen_pname_set = lv_textarea_create(ui->screen_tabview_tab_4); lv_textarea_set_text(ui->screen_pname_set, "Hello World"); lv_textarea_set_placeholder_text(ui->screen_pname_set, ""); lv_textarea_set_password_bullet(ui->screen_pname_set, "*"); lv_textarea_set_password_mode(ui->screen_pname_set, false); lv_textarea_set_one_line(ui->screen_pname_set, true); lv_textarea_set_accepted_chars(ui->screen_pname_set, ""); lv_textarea_set_max_length(ui->screen_pname_set, 32); #if LV_USE_KEYBOARD != 0 || LV_USE_ZH_KEYBOARD != 0 lv_obj_add_event_cb(ui->screen_pname_set, ta_event_cb, LV_EVENT_ALL, ui->g_kb_top_layer); #endif lv_obj_set_pos(ui->screen_pname_set, 305, -1); lv_obj_set_size(ui->screen_pname_set, 679, 50); //Write style for screen_pname_set, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_text_color(ui->screen_pname_set, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_pname_set, &lv_font_simsun_32, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_pname_set, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_pname_set, 1, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_pname_set, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_pname_set, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_pname_set, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_pname_set, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_pname_set, 2, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_opa(ui->screen_pname_set, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_color(ui->screen_pname_set, lv_color_hex(0xe6e6e6), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_side(ui->screen_pname_set, LV_BORDER_SIDE_FULL, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_pname_set, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_pname_set, 2, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_pname_set, 2, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_pname_set, 2, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_pname_set, 4, LV_PART_MAIN|LV_STATE_DEFAULT); //Write style for screen_pname_set, Part: LV_PART_SCROLLBAR, State: LV_STATE_DEFAULT. lv_obj_set_style_bg_opa(ui->screen_pname_set, 255, LV_PART_SCROLLBAR|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_pname_set, lv_color_hex(0x2195f6), LV_PART_SCROLLBAR|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_pname_set, LV_GRAD_DIR_NONE, LV_PART_SCROLLBAR|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_pname_set, 0, LV_PART_SCROLLBAR|LV_STATE_DEFAULT); //Write codes screen_set_Insert ui->screen_set_Insert = lv_btn_create(ui->screen_tabview_tab_4); ui->screen_set_Insert_label = lv_label_create(ui->screen_set_Insert); lv_label_set_text(ui->screen_set_Insert_label, "插入"); lv_label_set_long_mode(ui->screen_set_Insert_label, LV_LABEL_LONG_WRAP); lv_obj_align(ui->screen_set_Insert_label, LV_ALIGN_CENTER, 0, 0); lv_obj_set_style_pad_all(ui->screen_set_Insert, 0, LV_STATE_DEFAULT); lv_obj_set_width(ui->screen_set_Insert_label, LV_PCT(100)); lv_obj_set_pos(ui->screen_set_Insert, 654, 410); lv_obj_set_size(ui->screen_set_Insert, 100, 50); //Write style for screen_set_Insert, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_bg_opa(ui->screen_set_Insert, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_set_Insert, lv_color_hex(0x2195f6), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_set_Insert, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_set_Insert, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_set_Insert, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_set_Insert, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_set_Insert, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_set_Insert, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_set_Insert, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_set_Insert, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_set_Edit ui->screen_set_Edit = lv_btn_create(ui->screen_tabview_tab_4); ui->screen_set_Edit_label = lv_label_create(ui->screen_set_Edit); lv_label_set_text(ui->screen_set_Edit_label, "编辑"); lv_label_set_long_mode(ui->screen_set_Edit_label, LV_LABEL_LONG_WRAP); lv_obj_align(ui->screen_set_Edit_label, LV_ALIGN_CENTER, 0, 0); lv_obj_set_style_pad_all(ui->screen_set_Edit, 0, LV_STATE_DEFAULT); lv_obj_set_width(ui->screen_set_Edit_label, LV_PCT(100)); lv_obj_set_pos(ui->screen_set_Edit, 537, 410); lv_obj_set_size(ui->screen_set_Edit, 100, 50); //Write style for screen_set_Edit, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_bg_opa(ui->screen_set_Edit, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_set_Edit, lv_color_hex(0x2195f6), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_set_Edit, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_set_Edit, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_set_Edit, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_set_Edit, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_set_Edit, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_set_Edit, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_set_Edit, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_set_Edit, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_set_Delete ui->screen_set_Delete = lv_btn_create(ui->screen_tabview_tab_4); ui->screen_set_Delete_label = lv_label_create(ui->screen_set_Delete); lv_label_set_text(ui->screen_set_Delete_label, "删除"); lv_label_set_long_mode(ui->screen_set_Delete_label, LV_LABEL_LONG_WRAP); lv_obj_align(ui->screen_set_Delete_label, LV_ALIGN_CENTER, 0, 0); lv_obj_set_style_pad_all(ui->screen_set_Delete, 0, LV_STATE_DEFAULT); lv_obj_set_width(ui->screen_set_Delete_label, LV_PCT(100)); lv_obj_set_pos(ui->screen_set_Delete, 769, 410); lv_obj_set_size(ui->screen_set_Delete, 100, 50); //Write style for screen_set_Delete, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_bg_opa(ui->screen_set_Delete, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_set_Delete, lv_color_hex(0x2195f6), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_set_Delete, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_set_Delete, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_set_Delete, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_set_Delete, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_set_Delete, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_set_Delete, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_set_Delete, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_set_Delete, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_set_Save ui->screen_set_Save = lv_btn_create(ui->screen_tabview_tab_4); ui->screen_set_Save_label = lv_label_create(ui->screen_set_Save); lv_label_set_text(ui->screen_set_Save_label, "存储"); lv_label_set_long_mode(ui->screen_set_Save_label, LV_LABEL_LONG_WRAP); lv_obj_align(ui->screen_set_Save_label, LV_ALIGN_CENTER, 0, 0); lv_obj_set_style_pad_all(ui->screen_set_Save, 0, LV_STATE_DEFAULT); lv_obj_set_width(ui->screen_set_Save_label, LV_PCT(100)); lv_obj_set_pos(ui->screen_set_Save, 885, 410); lv_obj_set_size(ui->screen_set_Save, 100, 50); //Write style for screen_set_Save, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_bg_opa(ui->screen_set_Save, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_set_Save, lv_color_hex(0x2195f6), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_set_Save, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_set_Save, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_set_Save, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_set_Save, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_set_Save, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_set_Save, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_set_Save, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_set_Save, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_step_ ui->screen_step_ = lv_label_create(ui->screen_tabview_tab_4); lv_label_set_text_static(ui->screen_step_, "0/99"); lv_label_set_long_mode(ui->screen_step_, LV_LABEL_LONG_SCROLL_CIRCULAR); lv_obj_set_pos(ui->screen_step_, 305, 410); lv_obj_set_size(ui->screen_step_, 220, 50); //Write style for screen_step_, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_step_, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_step_, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_step_, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_step_, &lv_font_simsun_32, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_step_, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_step_, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_step_, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_step_, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_step_, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_step_, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_step_, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_step_, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_step_, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_step_, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes 系统 ui->screen_tabview_tab_5 = lv_tabview_add_tab(ui->screen_tabview,"系统"); lv_obj_t * screen_tabview_tab_5_label = lv_label_create(ui->screen_tabview_tab_5); lv_label_set_text(screen_tabview_tab_5_label, ""); //Write codes screen_w_5 ui->screen_w_5 = lv_obj_create(ui->screen_tabview_tab_5); lv_obj_set_pos(ui->screen_w_5, 1, 0); lv_obj_set_size(ui->screen_w_5, 984, 460); lv_obj_set_scrollbar_mode(ui->screen_w_5, LV_SCROLLBAR_MODE_OFF); //Write style for screen_w_5, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_w_5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_w_5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_w_5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_w_5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_w_5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_w_5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_w_5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_w_5, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_sys_save ui->screen_sys_save = lv_btn_create(ui->screen_w_5); ui->screen_sys_save_label = lv_label_create(ui->screen_sys_save); lv_label_set_text(ui->screen_sys_save_label, "存储"); lv_label_set_long_mode(ui->screen_sys_save_label, LV_LABEL_LONG_WRAP); lv_obj_align(ui->screen_sys_save_label, LV_ALIGN_CENTER, 0, 0); lv_obj_set_style_pad_all(ui->screen_sys_save, 0, LV_STATE_DEFAULT); lv_obj_set_width(ui->screen_sys_save_label, LV_PCT(100)); lv_obj_set_pos(ui->screen_sys_save, 885, 413); lv_obj_set_size(ui->screen_sys_save, 100, 50); //Write style for screen_sys_save, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_bg_opa(ui->screen_sys_save, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_sys_save, lv_color_hex(0x2195f6), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_sys_save, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_sys_save, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_sys_save, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_sys_save, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_sys_save, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_sys_save, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_sys_save, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_sys_save, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_machine_name ui->screen_machine_name = lv_textarea_create(ui->screen_w_5); lv_textarea_set_text(ui->screen_machine_name, "828"); lv_textarea_set_placeholder_text(ui->screen_machine_name, ""); lv_textarea_set_password_bullet(ui->screen_machine_name, "*"); lv_textarea_set_password_mode(ui->screen_machine_name, false); lv_textarea_set_one_line(ui->screen_machine_name, true); lv_textarea_set_accepted_chars(ui->screen_machine_name, ""); lv_textarea_set_max_length(ui->screen_machine_name, 32); #if LV_USE_KEYBOARD != 0 || LV_USE_ZH_KEYBOARD != 0 lv_obj_add_event_cb(ui->screen_machine_name, ta_event_cb, LV_EVENT_ALL, ui->g_kb_top_layer); #endif lv_obj_set_pos(ui->screen_machine_name, 150, 70); lv_obj_set_size(ui->screen_machine_name, 200, 50); //Write style for screen_machine_name, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_text_color(ui->screen_machine_name, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_machine_name, &lv_font_montserratMedium_30, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_machine_name, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_machine_name, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_machine_name, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_machine_name, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_machine_name, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_machine_name, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_machine_name, 2, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_opa(ui->screen_machine_name, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_color(ui->screen_machine_name, lv_color_hex(0xe6e6e6), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_side(ui->screen_machine_name, LV_BORDER_SIDE_FULL, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_machine_name, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_machine_name, 4, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_machine_name, 4, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_machine_name, 4, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_machine_name, 4, LV_PART_MAIN|LV_STATE_DEFAULT); //Write style for screen_machine_name, Part: LV_PART_SCROLLBAR, State: LV_STATE_DEFAULT. lv_obj_set_style_bg_opa(ui->screen_machine_name, 255, LV_PART_SCROLLBAR|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_machine_name, lv_color_hex(0x2195f6), LV_PART_SCROLLBAR|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_machine_name, LV_GRAD_DIR_NONE, LV_PART_SCROLLBAR|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_machine_name, 0, LV_PART_SCROLLBAR|LV_STATE_DEFAULT); //Write codes screen_sys_name ui->screen_sys_name = lv_label_create(ui->screen_w_5); lv_label_set_text(ui->screen_sys_name, "机台名"); lv_label_set_long_mode(ui->screen_sys_name, LV_LABEL_LONG_WRAP); lv_obj_set_pos(ui->screen_sys_name, 20, 79); lv_obj_set_size(ui->screen_sys_name, 100, 30); //Write style for screen_sys_name, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_sys_name, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_sys_name, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_sys_name, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_sys_name, &lv_font_simsun_28, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_sys_name, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_sys_name, 2, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_sys_name, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_sys_name, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_sys_name, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_sys_name, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_sys_name, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_sys_name, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_sys_name, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_sys_name, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_machine_id ui->screen_machine_id = lv_textarea_create(ui->screen_w_5); lv_textarea_set_text(ui->screen_machine_id, "ID"); lv_textarea_set_placeholder_text(ui->screen_machine_id, ""); lv_textarea_set_password_bullet(ui->screen_machine_id, "*"); lv_textarea_set_password_mode(ui->screen_machine_id, false); lv_textarea_set_one_line(ui->screen_machine_id, true); lv_textarea_set_accepted_chars(ui->screen_machine_id, ""); lv_textarea_set_max_length(ui->screen_machine_id, 32); #if LV_USE_KEYBOARD != 0 || LV_USE_ZH_KEYBOARD != 0 lv_obj_add_event_cb(ui->screen_machine_id, ta_event_cb, LV_EVENT_ALL, ui->g_kb_top_layer); #endif lv_obj_set_pos(ui->screen_machine_id, 150, 10); lv_obj_set_size(ui->screen_machine_id, 200, 50); //Write style for screen_machine_id, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_text_color(ui->screen_machine_id, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_machine_id, &lv_font_montserratMedium_30, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_machine_id, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_machine_id, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_machine_id, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_machine_id, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_machine_id, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_machine_id, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_machine_id, 2, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_opa(ui->screen_machine_id, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_color(ui->screen_machine_id, lv_color_hex(0xe6e6e6), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_side(ui->screen_machine_id, LV_BORDER_SIDE_FULL, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_machine_id, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_machine_id, 4, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_machine_id, 4, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_machine_id, 4, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_machine_id, 4, LV_PART_MAIN|LV_STATE_DEFAULT); //Write style for screen_machine_id, Part: LV_PART_SCROLLBAR, State: LV_STATE_DEFAULT. lv_obj_set_style_bg_opa(ui->screen_machine_id, 255, LV_PART_SCROLLBAR|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_machine_id, lv_color_hex(0x2195f6), LV_PART_SCROLLBAR|LV_STATE_DEFAULT); lv_obj_set_style_bg_grad_dir(ui->screen_machine_id, LV_GRAD_DIR_NONE, LV_PART_SCROLLBAR|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_machine_id, 0, LV_PART_SCROLLBAR|LV_STATE_DEFAULT); //Write codes screen_sys_id ui->screen_sys_id = lv_label_create(ui->screen_w_5); lv_label_set_text(ui->screen_sys_id, "站号"); lv_label_set_long_mode(ui->screen_sys_id, LV_LABEL_LONG_WRAP); lv_obj_set_pos(ui->screen_sys_id, 20, 20); lv_obj_set_size(ui->screen_sys_id, 100, 30); //Write style for screen_sys_id, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->screen_sys_id, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_sys_id, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_sys_id, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_sys_id, &lv_font_simsun_28, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_sys_id, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_sys_id, 2, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_sys_id, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_sys_id, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_sys_id, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_sys_id, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_sys_id, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->screen_sys_id, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_sys_id, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_sys_id, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes screen_sys_var ui->screen_sys_var = lv_qrcode_create(ui->screen_w_5, 100, lv_color_hex(0x2C3224), lv_color_hex(0xffffff)); const char * screen_sys_var_data = "http://www.secolor.cn"; lv_qrcode_update(ui->screen_sys_var, screen_sys_var_data, 21); lv_obj_set_pos(ui->screen_sys_var, 910, 10); lv_obj_set_size(ui->screen_sys_var, 100, 100); //The custom code of screen. //Update current screen layout. lv_obj_update_layout(ui->screen); //Init events for screen. events_init_screen(ui); }