A custom Home Assistant card to show and set helper input-number in a circle slider. You can also toggle an automation by clicking the center of the card.
Usefull for easy adjusting timers for automations triggered by motion sensors.
Open HACS >
- Go to any of the sections (integrations, frontend, automation).
- Click on the 3 dots in the top right corner.
- Select "Custom repositories"
- Add the URL to the repository. ("https://github.com/mellamomax/rotating-helper-card")
- Select the "lovelace"
- Click the "ADD" button.
Example yaml:
type: custom:rotating-helper-card
entity: input_number.badrum_sensor
stepSize: 15
maxValue: 20
secondaryValue: sec
onColor: blue
offColor: red
ringColor: orange
trackColor: green
automation: automation.badrum_sensor_2_0
Options:
| Name | Type | Default | Supported options | Description |
|---|---|---|---|---|
| type | string | custom:rotating-helper-card | The type of the card. | |
| entity | string | input_number.badrum_sensor | The entity to track. | |
| automation | string | automations | Automation entity. | |
| stepSize | integer | 1 | Step size for increment adjustments of the helper. | |
| maxValue | integer | 100 | Maximum value setting. (wont override the helper max value) | |
| secondaryValue | string | text | Secondary value to display. | |
| onColor | string | css-color | Color when on. | |
| offColor | string | css-color | Color when off. | |
| ringColor | string | css-color | Color of the ring. | |
| trackColor | string | css-color | Color of the track. |

