/lvgl-latest/demos/smartwatch/ |
D | lv_demo_smartwatch_private.h | 143 void lv_demo_smartwatch_home_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay); 151 void lv_demo_smartwatch_settings_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t dela… 159 void lv_demo_smartwatch_control_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay… 167 void lv_demo_smartwatch_weather_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay… 175 void lv_demo_smartwatch_list_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay); 183 void lv_demo_smartwatch_notifications_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t… 191 void lv_demo_smartwatch_qr_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay); 199 void lv_demo_smartwatch_easter_egg_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t de…
|
D | lv_demo_smartwatch_notifications.h | 48 void lv_demo_smartwatch_notifications_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t… 64 void lv_demo_smartwatch_show_notification(int app_id, const char * message, const char * time);
|
D | lv_demo_smartwatch_easter_egg.h | 43 void lv_demo_smartwatch_easter_egg_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t de…
|
D | lv_demo_smartwatch_list.h | 44 void lv_demo_smartwatch_list_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay);
|
D | lv_demo_smartwatch_control.h | 44 void lv_demo_smartwatch_control_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay…
|
D | lv_demo_smartwatch_qr.h | 43 void lv_demo_smartwatch_qr_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay);
|
D | lv_demo_smartwatch.h | 76 void lv_demo_smartwatch_home_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay); 174 void lv_demo_smartwatch_show_notification(int app_id, const char * message, const char * time);
|
D | lv_demo_smartwatch_weather.h | 43 void lv_demo_smartwatch_weather_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay…
|
D | lv_demo_smartwatch_notifications.c | 94 void lv_demo_smartwatch_notifications_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t… in lv_demo_smartwatch_notifications_load() argument 96 lv_screen_load_anim(notification_screen, anim_type, time, delay, false); in lv_demo_smartwatch_notifications_load() 147 void lv_demo_smartwatch_show_notification(int app_id, const char * message, const char * time) in lv_demo_smartwatch_show_notification() argument 149 lv_label_set_text(message_time, time); in lv_demo_smartwatch_show_notification()
|
D | lv_demo_smartwatch_settings.h | 43 void lv_demo_smartwatch_settings_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t dela…
|
/lvgl-latest/tests/micropy_test/ |
D | __init__.py | 24 import time 75 self.watchdog_timer = time.time() 234 time.sleep(0.002) 241 td.watchdog_timer = time.time() 247 td.watchdog_timer = time.time() 256 td.watchdog_timer = time.time() 283 test_data.watchdog_timer = time.time() 288 (time.time() - test_data.watchdog_timer) * 1000 <= 20000 and
|
/lvgl-latest/scripts/ |
D | jpg_to_sjpg.py | 10 import math, os, sys, time 33 start_time = time.time() 133 time_taken = (time.time() - start_time)
|
/lvgl-latest/src/widgets/calendar/ |
D | lv_calendar.c | 41 static lv_calendar_date_t gregorian_get_last_month_time(lv_calendar_date_t * time); 42 static lv_calendar_date_t gregorian_get_next_month_time(lv_calendar_date_t * time); 460 static lv_calendar_date_t gregorian_get_last_month_time(lv_calendar_date_t * time) in gregorian_get_last_month_time() argument 463 if(time->month == 1) { in gregorian_get_last_month_time() 465 last_month_time.year = time->year - 1; in gregorian_get_last_month_time() 468 last_month_time.month = time->month - 1; in gregorian_get_last_month_time() 469 last_month_time.year = time->year; in gregorian_get_last_month_time() 474 static lv_calendar_date_t gregorian_get_next_month_time(lv_calendar_date_t * time) in gregorian_get_next_month_time() argument 477 if(time->month == 12) { in gregorian_get_next_month_time() 479 next_month_time.year = time->year + 1; in gregorian_get_next_month_time() [all …]
|
/lvgl-latest/env_support/cmsis-pack/ |
D | lv_cmsis_pack.txt | 28 #include <time.h> 111 * time() which is not included in the MicroLib 116 _ARMABI time_t time(time_t * time)
|
/lvgl-latest/demos/high_res/ |
D | lv_demo_high_res_home.c | 99 lv_obj_t * time = lv_spangroup_create(date_and_time); in lv_demo_high_res_home() local 100 lv_obj_add_style(time, &c->fonts[FONT_HEADING_XXL], 0); in lv_demo_high_res_home() 101 lv_obj_add_style(time, &c->styles[STYLE_COLOR_BASE][STYLE_TYPE_TEXT], 0); in lv_demo_high_res_home() 102 lv_spangroup_new_span(time); in lv_demo_high_res_home() 103 lv_span_t * minute = lv_spangroup_new_span(time); in lv_demo_high_res_home() 104 lv_subject_add_observer_obj(&c->th, theme_observer_accent_span_cb, time, minute); in lv_demo_high_res_home() 105 lv_subject_add_observer_obj(&c->subject_groups.time.group, time_observer_cb, time, c); in lv_demo_high_res_home()
|
/lvgl-latest/tests/src/test_libs/rnd_unicodes/rnd_unicodes/ |
D | README.md | 13 #include "time.h" 25 srand(time(NULL));
|
/lvgl-latest/demos/music/ |
D | lv_demo_music_list.c | 177 char time[32]; in add_list_button() local 178 lv_snprintf(time, sizeof(time), "%"LV_PRIu32":%02"LV_PRIu32, t / 60, t % 60); in add_list_button() 215 lv_label_set_text(time_label, time); in add_list_button()
|
/lvgl-latest/docs/intro/add-lvgl-to-your-project/ |
D | connecting_lvgl.rst | 31 6. Drive LVGL time-related tasks by calling :cpp:func:`lv_timer_handler` every few 47 LVGL needs awareness of what time it is (i.e. elapsed time in milliseconds) for 48 all of its tasks for which time is a factor: refreshing displays, reading user 111 not dependent on anything that consumes an unknown amount of time. For an example of 113 because the execution time of :c:func:`lv_timer_handler` varies from call to call and
|
D | timer_handler.rst | 29 supplying LVGL with time awareness: 39 Or use the sleep time automatically calculated by LVGL:
|
/lvgl-latest/docs/details/integration/os/ |
D | mqx.rst | 7 …/design-center/software/embedded-software/mqx-software-solutions/mqx-real-time-operating-system-rt…
|
/lvgl-latest/docs/details/base-widget/ |
D | event.rst | 124 - :cpp:enumerator:`LV_EVENT_SHORT_CLICKED`: Widget was pressed for a short period of time, and the… 125 …time, and then released without scrolling, for the first time in a click streak. A click streak re… 126 …D`: Widget was pressed for a short period of time, and then released without scrolling, for the se… 127 …ED`: Widget was pressed for a short period of time, and then released without scrolling, for the t… 216 - notify a label to refresh its text according to one or more variables (e.g. current time)
|
/lvgl-latest/src/core/ |
D | lv_obj_style_private.h | 35 uint16_t time; member
|
/lvgl-latest/src/misc/ |
D | lv_anim.c | 242 uint32_t time = (d * 1000) / speed; in lv_anim_speed_to_time() local 244 time = time == 0 ? 1 : time; in lv_anim_speed_to_time() 246 return time; in lv_anim_speed_to_time() 497 uint32_t time = (d * 100) / speed; /*Speed is in 10 units per sec*/ in lv_anim_resolve_speed() local 501 return LV_CLAMP(min_time * 10, time, max_time * 10); in lv_anim_resolve_speed()
|
/lvgl-latest/docs/details/main-components/ |
D | animation.rst | 7 Animations allow you to define the way something should move or change over time, and 11 appearance, size or location over time. But because it is --- at its core --- a 12 generic change-over-time manager, complete with a variety of optional event 17 specified time period. It allows you to specify what object it applies to (the 21 This variation over time can be linear (default), it can be on a path (curve) that 52 The number of Animations that can be playing at the same time for a given object with 54 be playing at the same time is limited only by available RAM and CPU time for: 118 lv_anim_set_reverse_duration(&anim_template, time); 290 to call it a second time --- no damage will occur. 324 ``start_time`` is the start time of the Animation on the Timeline. Note that
|
/lvgl-latest/docs/details/debugging/ |
D | profiler.rst | 47 #include <time.h> 86 /* Use the microsecond time stamp provided by Arduino */ 165 …the mouse to move the focus and click on functions on the timeline to observe their execution time. 230 Function execution time displayed as 0s in Perfetto 233 If the function execution time is lower than the precision of the timestamps, this situation can oc… 241 2. Optimize the execution time of log printing functions, such as increasing the serial port baud r…
|