i80_controller sample
lv_arc_t::value
is only used within i80_controller sample.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
i80_controller sample
lv_arc_t::value
lv_arc_t::value field
Current value of the arc
Syntax
Show:
Summary
Declaration
from
lv_arc_private.h:36
int32_t
value
;
Examples
References
from
examples
Code
Location
Referrer
int32_t
value
;
/**< Current value of the arc */
lv_arc_private.h:36
int32_t
val
=
arc
->
value
;
lv_arc.c:215
lv_arc_set_mode()
arc
->
value
=
-
1
;
/** Force set_value handling*/
lv_arc.c:218
lv_arc_set_mode()
if
(
arc
->
value
==
value
)
return
;
lv_arc.c:244
lv_arc_set_value()
if
(
arc
->
value
==
new_value
)
return
;
lv_arc.c:250
lv_arc_set_value()
arc
->
value
=
new_value
;
lv_arc.c:251
lv_arc_set_value()
if
(
arc
->
value
<
min
)
{
lv_arc.c:266
lv_arc_set_range()
arc
->
value
=
min
;
lv_arc.c:267
lv_arc_set_range()
if
(
arc
->
value
>
max
)
{
lv_arc.c:269
lv_arc_set_range()
arc
->
value
=
max
;
lv_arc.c:270
lv_arc_set_range()
return
(
(
lv_arc_t
*
)
obj
)
->
value
;
lv_arc.c:323
lv_arc_get_value()
arc
->
value
=
VALUE_UNSET
;
lv_arc.c:426
lv_arc_constructor()
int32_t
old_value
=
arc
->
value
;
lv_arc.c:582
lv_arc_event()
int32_t
old_value
=
arc
->
value
;
lv_arc.c:618
lv_arc_event()
if
(
old_value
!=
arc
->
value
)
{
lv_arc.c:626
lv_arc_event()
int32_t
old_value
=
arc
->
value
;
lv_arc.c:634
lv_arc_event()
if
(
old_value
!=
arc
->
value
)
{
lv_arc.c:636
lv_arc_event()
if
(
arc
->
value
==
VALUE_UNSET
)
return
;
lv_arc.c:884
value_update()
if
(
arc
->
value
<
range_midpoint
)
{
lv_arc.c:896
value_update()
angle
=
lv_map
(
arc
->
value
,
arc
->
min_value
,
range_midpoint
,
(
int32_t
)
arc
->
bg_angle_start
,
(
int32_t
)
bg_midpoint
)
;
lv_arc.c:897
value_update()
angle
=
lv_map
(
arc
->
value
,
range_midpoint
,
arc
->
max_value
,
(
int32_t
)
bg_midpoint
,
(
int32_t
)
bg_end
)
;
lv_arc.c:902
value_update()
angle
=
lv_map
(
arc
->
value
,
arc
->
min_value
,
arc
->
max_value
,
(
int32_t
)
bg_end
,
(
int32_t
)
arc
->
bg_angle_start
)
;
lv_arc.c:908
value_update()
angle
=
lv_map
(
arc
->
value
,
arc
->
min_value
,
arc
->
max_value
,
(
int32_t
)
arc
->
bg_angle_start
,
(
int32_t
)
bg_end
)
;
lv_arc.c:912
value_update()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
lv_arc_t::value
is written by 4 functions and is read by 6 functions:
lv_arc_set_mode()
lv_arc_set_value()
lv_arc_set_range()
lv_arc_constructor()
All items filtered out
lv_arc_t::value
lv_arc_set_mode()
lv_arc_set_value()
lv_arc_set_range()
lv_arc_get_value()
lv_arc_event()
value_update()
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