Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions content/components/lvgl/widgets.md
Original file line number Diff line number Diff line change
Expand Up @@ -1538,9 +1538,6 @@ The `slider` can be also integrated as {{< docref "/components/number/lvgl" "Num

See [Light brightness slider](/cookbook/lvgl#lvgl-cookbook-bright) and [Media player volume slider](/cookbook/lvgl#lvgl-cookbook-volume) for examples which demonstrate how to use a slider to control entities in Home Assistant.

{{< anchor "lvgl-widget-canvas" >}}
{{< anchor "lvgl-widget-spinbox" >}}

## `spinbox`

The spinbox contains a numeric value (as text) which can be increased or decreased through actions. You can, for example, use buttons labeled with plus and minus to call actions which increase or decrease the value as required.
Expand Down Expand Up @@ -1589,7 +1586,7 @@ The spinbox contains a numeric value (as text) which can be increased or decreas
text_align: center
range_from: -10
range_to: 40
step: 0.5
selected_digit: 2
digits: 3
decimal_places: 1

Expand Down
4 changes: 2 additions & 2 deletions content/cookbook/lvgl.md
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ lvgl:
width: 50
range_from: 15
range_to: 35
step: 0.5
selected_digit: 0
rollover: false
digits: 3
decimal_places: 1
Expand Down Expand Up @@ -2229,7 +2229,7 @@ number:
restore_value: true
min_value: 10
max_value: 180
step: 5
selected_digit: 1
mode: box
```

Expand Down