Lines Matching refs:control_bluetooth_icon

38 static lv_obj_t * control_bluetooth_icon;  variable
130 control_bluetooth_icon = lv_image_create(control_screen); in control_screen_create()
131 lv_image_set_src(control_bluetooth_icon, &img_bluetooth_g_icon); in control_screen_create()
132 lv_obj_set_width(control_bluetooth_icon, LV_SIZE_CONTENT); in control_screen_create()
133 lv_obj_set_height(control_bluetooth_icon, LV_SIZE_CONTENT); in control_screen_create()
134 lv_obj_set_x(control_bluetooth_icon, 0); in control_screen_create()
135 lv_obj_set_y(control_bluetooth_icon, -100); in control_screen_create()
136 lv_obj_set_align(control_bluetooth_icon, LV_ALIGN_CENTER); in control_screen_create()
137 lv_obj_add_state(control_bluetooth_icon, LV_STATE_CHECKED); in control_screen_create()
138 lv_obj_add_flag(control_bluetooth_icon, LV_OBJ_FLAG_CHECKABLE); in control_screen_create()
139 lv_obj_remove_flag(control_bluetooth_icon, LV_OBJ_FLAG_SCROLLABLE); in control_screen_create()
140 lv_image_set_scale(control_bluetooth_icon, 200); in control_screen_create()
141 …lv_obj_set_style_image_recolor(control_bluetooth_icon, lv_color_hex(0x000000), LV_PART_MAIN | LV_S… in control_screen_create()
142 … lv_obj_set_style_image_recolor_opa(control_bluetooth_icon, 230, LV_PART_MAIN | LV_STATE_CHECKED); in control_screen_create()
143 lv_obj_set_style_radius(control_bluetooth_icon, 5, LV_PART_MAIN | LV_STATE_PRESSED); in control_screen_create()
144 …lv_obj_set_style_bg_color(control_bluetooth_icon, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_… in control_screen_create()
145 lv_obj_set_style_bg_opa(control_bluetooth_icon, 255, LV_PART_MAIN | LV_STATE_PRESSED); in control_screen_create()