Lines Matching refs:weather_current_icon
38 static lv_obj_t * weather_current_icon; variable
110 set_weather_icon(weather_current_icon, icon, day); in lv_demo_smartwatch_set_weather()
280 weather_current_icon = lv_image_create(weather_panel); in create_screen_weather()
281 lv_image_set_src(weather_current_icon, &img_weather_day_0); in create_screen_weather()
282 lv_obj_set_width(weather_current_icon, LV_SIZE_CONTENT); in create_screen_weather()
283 lv_obj_set_height(weather_current_icon, LV_SIZE_CONTENT); in create_screen_weather()
284 lv_obj_set_x(weather_current_icon, 0); in create_screen_weather()
285 lv_obj_set_y(weather_current_icon, -29); in create_screen_weather()
286 lv_obj_set_align(weather_current_icon, LV_ALIGN_CENTER); in create_screen_weather()
287 lv_obj_add_flag(weather_current_icon, LV_OBJ_FLAG_ADV_HITTEST); in create_screen_weather()
288 lv_obj_remove_flag(weather_current_icon, LV_OBJ_FLAG_SCROLLABLE); in create_screen_weather()
289 lv_image_set_scale(weather_current_icon, 400); in create_screen_weather()