Amm, no. It doesnât work for me.
I downloaded to /config/resources directory. I can even show it in VS Code:
Configured it in Lovelace like that:
And am still getting âCustom element doesnât existâ What Am I doing wrong?
BTW, why is it so complicated that I need to download custom files, configure them manually, then add automations to be able to control fairly simple device as dimmer is. I would expect a kind of dimmer in most systems of ours and yet it has no own integration.
@Sand, not sure if you already figured this out but hereâs how I did it:
type: picture-elements
image: local/images/controls/color_temp_background.png
elements:
- type: 'custom:slider-entity-row'
icon: 'mdi:none'
name: ' '
hide_state: true
full_row: true
entity: input_number.light_livingroom_color
style:
left: 50%
top: 50%
width: 400px
Basically Iâm using a picture elements card and as element I use a slider in full-row mode.
Thereâs also an automation to set the color-temp of the light once the state of this input slider has been modified.
Picture I use:
If I use âcustom: slider-entity-rowâ in a new card, everything works fine:
type: entities
entities:
- type: 'custom:slider-entity-row'
entity: input_number.secondi_accensione_luce_davanti
name: Secondi accensione
icon: 'mdi:clock'
but if I use it inside a card where there are already other entities, the right margin of the slide disappears
type: 'custom:mod-card'
style: |
ha-card {
border: 1px solid black;
background: white;
}
card:
type: vertical-stack
cards:
- type: 'custom:button-card'
name: Luce davanti
styles:
name:
- font-size: 20px
- type: 'custom:slider-entity-row'
entity: input_number.secondi_accensione_luce_davanti
name: Secondi accensione
icon: 'mdi:clock'
- type: horizontal-stack
cards:
- type: 'custom:button-card'
entity: input_select.modalita_luce_davanti
icon: 'mdi:lightbulb-on-outline'
name: sempre_acceso
tap_action:
action: call-service
service: input_select.select_option
service_data:
entity_id: input_select.modalita_luce_davanti
option: sempre_acceso
show_state: false
show_name: false
state:
- value: sempre_acceso
color: 'rgb(5, 147, 255)'
- type: 'custom:button-card'
entity: input_select.modalita_luce_davanti
icon: 'mdi:motion-sensor'
name: automatico
tap_action:
action: call-service
service: input_select.select_option
service_data:
entity_id: input_select.modalita_luce_davanti
option: automatico
show_state: false
show_name: false
state:
- value: automatico
color: 'rgb(5, 147, 255)'
- type: 'custom:button-card'
entity: input_select.modalita_luce_davanti
icon: 'mdi:lightbulb-off-outline'
name: sempre_spento
tap_action:
action: call-service
service: input_select.select_option
service_data:
entity_id: input_select.modalita_luce_davanti
option: sempre_spento
show_state: false
show_name: false
state:
- value: sempre_spento
color: 'rgb(5, 147, 255)'
Can anyone help me?
Hi, sorry daft question but how have people changed the colour of the slider and slider button?
Hi all
I just updated to v.17 and Iâm getting error Custom element doesn't exist: slider-entity-row
Iâve already cleared cache, tested on Firefox and Chrome
Core is 2021.3.1 and Supervisor is 2021.03.4
Rolling back to v16 works fine
A sample of my code is
- entity: 'light.sala'
type: custom:slider-entity-row
icon: mdi:lamp
What can I check?
Thanks
Guys, i did a lot of researching around here and i canât find a solution for my question:
Can someone tell me how i can put the âClosedâ or âOpenâ in shutters when they are fully opened or closed? when they are fully opened i can see â100%â but when closed it dont shows anything.
Here is the code on this card:
type: entities
entities:
- type: 'custom:slider-entity-row'
fullrow: false
entity: cover.shellyswitch25_68c63afab756
secondary_info: last-changed
hide_state: false
- sensor.shellyswitch25_68c63afab756_power
title: Living Room
state_color: true
thank you all!
Hi, thatâs the same for me. Have you solved it yet?
Hello, I just upgraded to new HA version and I am trying to implement this with a ceiling fan. The fan speed has changed to 0-100 values instead of Low/Med/High with latest update. When I just add the fan entity to this card, the slider only goes up to 3. When I change the min/max to 0-100, and step to 1, the fan just turns off any time I change the slider to any valueâŚAny ideas?
Edit: So I assume the 1-2-3 values right represent Lo/Mid/High and the card just doesnât support the new 1-100 values yet. Thanks
unfortunately not
not yetâŚ
updating to the latest version made it happen:
using:
- type: custom:slider-entity-row
entity: cover.rolluik_front_room
step: 1
hide_state: false
secondary_info: last-changed
I confirm, just updated and working
Manuel, can I ask how you add the the wattage on the side? I find this very useful as my dimmers jump to on even when they are off, so I want an indicator to see if itâs actually on or off.
Hi, this looks a littlebit tricky, but is quiet simple.
Here is the (i think) self explaing code:
- entity: light.bu_licht_dimmer
secondary_info: last-changed
toggle: true
type: 'custom:slider-entity-row'
name: Deckenlicht
- entity: sensor.bu_deckenlicht_power
name: []
The icons for the power i set to none in the customize.yaml:
sensor.ku_deckenlicht_power:
icon: mdi:none
or you do it here:
Thanks for the response,
I ended up doing this:
but would prefer the slider to be adjacent the toggle rather than below to save spaceâŚ
Thanks!
Can I use this for a ventilation entity like this:
fan:
- platform: template
fans:
mechanische_ventilatie:
friendly_name: Mechanische ventilatie
value_template: >
{{ states('sensor.mechanische_ventilatie_status') }}
availability_template: >
{{ states('sensor.mechanische_ventilatie_status') }}
percentage_template: >
{{ state_attr('sensor.mechanische_ventilatie_status', 'percentage') }}
preset_mode_template: >
{{ state_attr('sensor.mechanische_ventilatie_status', 'speed') }}
turn_on:
service: script.ventilation_turn_on_off_dummy
turn_off:
service: script.ventilation_turn_on_off_dummy
set_percentage:
service: script.ventilation_set_voltage
data:
voltage: '{{ percentage / 10 }}'
set_preset_mode:
service: script.ventilation_set_preset_mode
data:
preset_mode: '{{ preset_mode }}'
preset_modes:
- low
- medium
- high
- max
Where the current percentage is read from percentage_template and the new percentage is set when releasing the slider with set_percentage.
Thanks!
I have the same error on 17.0.1 and it just appeared out of the blue. Everything was working fine prior.
Hi Guys,
I´m very new to Home Assistant and Sonoff, my first setup is an ifan03 and i got it to work with home assistant with the slider-entity-row.
If i set the speed to 15% it shows the speed âlowâ and the fan is working in low speed, but when i set it to â0â the fan stays in âlowâ and it doesnt set it to âoffâ, the only way i found to switch the fan off is with the toggle.
Is the card code missing something?
Can anyone help me?(remember that i just started 4 days ago)
Hello,
is it possible to change the toggle icon to the like of the âbool Testâ icons in the attached image? If so how can it be achieved?
These icons are from HACS front end https://github.com/finity69x2/toggle-control-button-row.
Thank you,
Stefan
Are you trying to change the left side icon or the right side toggle from the âswitchâ to the button?