Home
last modified time | relevance | path

Searched refs:weather_update_time (Results 1 – 1 of 1) sorted by relevance

/lvgl-latest/demos/smartwatch/
Dlv_demo_smartwatch_weather.c40 static lv_obj_t * weather_update_time; variable
107 lv_label_set_text_fmt(weather_update_time, "Updated at\n%02d:%02d", hour, minute); in lv_demo_smartwatch_set_weather()
300 weather_update_time = lv_label_create(weather_panel); in create_screen_weather()
301 lv_obj_set_width(weather_update_time, LV_SIZE_CONTENT); in create_screen_weather()
302 lv_obj_set_height(weather_update_time, LV_SIZE_CONTENT); in create_screen_weather()
303 lv_obj_set_x(weather_update_time, 0); in create_screen_weather()
304 lv_obj_set_y(weather_update_time, 97); in create_screen_weather()
305 lv_obj_set_align(weather_update_time, LV_ALIGN_CENTER); in create_screen_weather()
306 lv_label_set_text(weather_update_time, "unavailable\n--:--"); in create_screen_weather()
307 …lv_obj_set_style_text_align(weather_update_time, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN | LV_STATE_DEF… in create_screen_weather()