Hello Thomas, I would like to use unit_of_measurements also for input_number. I would do it this way, if you confortable with this. Later we could refactor also other controllers which are taking it from config, not from entity attributes and combine both approaches. What is your opinion for it ?
slider-entity-row
Add a slider to rows in lovelace entities cards.
For installation instructions see this guide.
Install slider-entity-row.js
as a module
.
Usage
Add this to an entities card:
type: entities
entities:
- light.bed_light
- type: custom:slider-entity-row
entity: light.kitchen_lights
Currenly supported entity domains:
light
- set brightnessmedia_player
- set volumeclimate
- set temperaturecover
- set positionfan
- set speed (assumes first setting isoff
)input_number
- set value (only ifmode: slider
)input_select
- select option
Options
toggle: true
- Show a toggle instead of current statehide_state: true
- Do not display current statehide_when_off: true
- Hide the slider when state isoff
full_row: true
- Hide icon and name and stretch slider to full widthmin: <value>
- Set minimum value of slidermax: <value>
- Set maximum value of sliderstep: <value>
- Set step size of slider
type: entities
title: Options
entities:
- type: custom:slider-entity-row
entity: light.bed_light
name: Default
- type: custom:slider-entity-row
entity: light.bed_light
name: toggle
toggle: true
- type: custom:slider-entity-row
entity: light.bed_light
name: hide_state
hide_state: true
- type: custom:slider-entity-row
entity: light.ceiling_lights
name: hide_when_off
hide_when_off: true
- type: custom:slider-entity-row
entity: light.ceiling_lights
name: hide_when_off + toggle
hide_when_off: true
toggle: true
- type: section
label: full_row
- type: custom:slider-entity-row
entity: light.bed_light
name: hide_state
full_row: true
Description
Languages
JavaScript
100%