Overview
The slider component is a UI element that allows the user to select a value from a range. It requires a characteristic with read and write properties.
Bleboard will read the current value of the characteristic on connection, then write to the value when the user drags the slider.

Properties
You will specify a minimum and maximum value for the component, and the slider will represent the current value as it progresses between the two values.
| Property | Type | Description |
|---|---|---|
| minimum | number | The minimum value of the slider. |
| maximum | number | The maximum value of the slider. |
| step | number | The step size of the slider. |
Last updated on