Home
last modified time | relevance | path

Searched refs:time (Results 1 – 25 of 105) sorted by relevance

12345

/lvgl-latest/demos/smartwatch/
Dlv_demo_smartwatch_private.h143 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…
Dlv_demo_smartwatch_notifications.h48 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);
Dlv_demo_smartwatch_easter_egg.h43 void lv_demo_smartwatch_easter_egg_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t de…
Dlv_demo_smartwatch_list.h44 void lv_demo_smartwatch_list_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay);
Dlv_demo_smartwatch_control.h44 void lv_demo_smartwatch_control_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay…
Dlv_demo_smartwatch_qr.h43 void lv_demo_smartwatch_qr_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay);
Dlv_demo_smartwatch.h76 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);
Dlv_demo_smartwatch_weather.h43 void lv_demo_smartwatch_weather_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay…
Dlv_demo_smartwatch_notifications.c94 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()
Dlv_demo_smartwatch_settings.h43 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__.py24 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/
Djpg_to_sjpg.py10 import math, os, sys, time
33 start_time = time.time()
133 time_taken = (time.time() - start_time)
/lvgl-latest/src/widgets/calendar/
Dlv_calendar.c41 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/
Dlv_cmsis_pack.txt28 #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/
Dlv_demo_high_res_home.c99 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/
DREADME.md13 #include "time.h"
25 srand(time(NULL));
/lvgl-latest/demos/music/
Dlv_demo_music_list.c177 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/
Dconnecting_lvgl.rst31 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
Dtimer_handler.rst29 supplying LVGL with time awareness:
39 Or use the sleep time automatically calculated by LVGL:
/lvgl-latest/docs/details/integration/os/
Dmqx.rst7 …/design-center/software/embedded-software/mqx-software-solutions/mqx-real-time-operating-system-rt…
/lvgl-latest/docs/details/base-widget/
Devent.rst124 - :cpp:enumerator:`LV_EVENT_SHORT_CLICKED`: Widget was pressed for a short period of time, and the…
125time, 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/
Dlv_obj_style_private.h35 uint16_t time; member
/lvgl-latest/src/misc/
Dlv_anim.c242 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/
Danimation.rst7 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/
Dprofiler.rst47 #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…

12345