i2c_oled sample
lv_timer_create()
is only used within i2c_oled sample.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
i2c_oled sample
lv_timer_create()
lv_timer_create() function
Create a new lv_timer
Syntax
Show:
Summary
Declaration
Definition
from
lv_timer.h:106
lv_timer_t
*
lv_timer_create
(
lv_timer_cb_t
timer_xcb
,
uint32_t
period
,
void
*
user_data
)
;
Implemented in
lv_timer.c:167
Arguments
Argument
Description
timer_xcb
a callback which is the timer itself. It will be called periodically. (the 'x' in the argument name indicates that it's not a fully generic function because it not follows the `func_name(object, callback, ...)` convention)
period
call period in ms unit
user_data
custom parameter
Return value
pointer to the new timer
Examples
References
from
examples
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out