Home
last modified time | relevance | path

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

/lvgl-3.7.0/examples/event/
Dlv_example_event_4.c15 uint32_t tick = lv_tick_get(); in timer_cb() local
17 old_tick = tick; in timer_cb()
19 if(tick - old_tick > 3000) { in timer_cb()
22 old_tick = tick; in timer_cb()
38 uint32_t tick = lv_tick_get(); in event_cb() local
40 int angle = i * 360 / n + ((tick % 36000) / 100); in event_cb()
/lvgl-3.7.0/docs/widgets/extra/
Dmeter.md8 - `LV_PART_TICKS` The tick lines a labels using the *line* and *text* style properties.
17 …jor ticks and labels on the major ticks. Later indicators (needles, arcs, tick modifiers) can be a…
21 The minor tick lines can be configured with: `lv_meter_set_scale_ticks(meter, scale, tick_count, li…
23tick lines use `lv_meter_set_scale_major_ticks(meter, scale, nth_major, tick_width, tick_length, t…
25 …s with `label_gap` distance from the ticks with text proportionally to the values of the tick line.
57 `width_mod` modifies the width of the tick lines.
79 - `LV_METER_DRAW_PART_TICK` The tick lines and labels
Dchart.md109 - `draw_size` extra size required to draw the tick and labels (start with 20 px and increase if the…
161 - `LV_CHART_DRAW_PART_TICK_LABEL` Used on tick lines and labels.
164 - `value`: value of the tick
/lvgl-3.7.0/docs/widgets/core/
Dcheckbox.md6 The Checkbox object is created from a "tick box" and a label. When the Checkbox is clicked the tick
11 - `LV_PART_INDICATOR` The "tick box" is a square that uses all the typical background style propert…
12 … equal to the height of the main part's font. Padding properties make the tick box larger in the r…
/lvgl-3.7.0/docs/porting/
Dindex.md12 tick
Dtick.md3 LVGL needs a system tick to know elapsed time for animations and other tasks.
Dproject.md65 …y `x` milliseconds in an interrupt to report the elapsed time to LVGL. [Learn more](/porting/tick).
/lvgl-3.7.0/.github/ISSUE_TEMPLATE/
Dbug-report.md15 ### Perform all steps below and tick them with [x]
/lvgl-3.7.0/env_support/cmsis-pack/
DREADME.md109 /*Use a custom tick source that tells the elapsed time in milliseconds.
110 *It removes the need to manually update the tick with `lv_tick_inc()`)*/
/lvgl-3.7.0/src/extra/widgets/chart/
Dlv_chart.h105 lv_chart_tick_dsc_t tick[4]; member
Dlv_chart.c737 …lv_event_set_ext_draw_size(e, LV_MAX4(chart->tick[0].draw_size, chart->tick[1].draw_size, chart->t… in lv_chart_event()
738 chart->tick[3].draw_size)); in lv_chart_event()
1794 return &chart->tick[0]; in get_tick_gsc()
1796 return &chart->tick[1]; in get_tick_gsc()
1798 return &chart->tick[2]; in get_tick_gsc()
1800 return &chart->tick[3]; in get_tick_gsc()
/lvgl-3.7.0/docs/overview/
Ddrawing.md173 char text[16]; // A text calculated during drawing. Can be modified. E.g. tick
175 int32_t value; // A value calculated during drawing. E.g. Chart's tick line va…
Dobject.md188 - `LV_PART_INDICATOR` Indicator, e.g. for slider, bar, switch, or the tick box of the checkbox
Dfont.md135 - In the online converter tick the `Subpixel` box
Dstyle.md111 - `LV_PART_INDICATOR` Indicator, e.g. for slider, bar, switch, or the tick box of the checkbox
/lvgl-3.7.0/docs/intro/
Dindex.md157 Learn more in the [Tick](/porting/tick) and [Timer handler](/porting/timer-handler) sections.
/lvgl-3.7.0/
DKconfig114 bool "Use a custom tick source"
/lvgl-3.7.0/docs/
DCHANGELOG.md534 - fix(chart): fix misaligned horizontal tick lines on bar charts [`4572a0c`](https://github.com/lvg…
566 - fix(meter): improve the precision of tick line drawing [`0255c6d`](https://github.com/lvgl/lvgl/c…
1043 - fix(hal tick): add precompile !LV_TICK_CUSTOM for global variables and lv_tick_inc() [`2675`](htt…
1225 - fix(tick) minor optimization on lv_tick_inc call test [`b4305df`](https://github.com/lvgl/lvgl/co…
1575 - fix(tick) minor optimization on lv_tick_inc call test <a href="https://github.com/lvgl/lvgl/commi…
2002 - `lv_chart` fix X tick drawing