Hi I have groups set up using entity_id.
Wanted to rename all the entity ID’s to friendly names just to make it more simple.
Now when restarting HA I get devices not found in all_lights in my main lovelace overview page.
What went wrong?
here it how it was which worked
in configuration file before and after I had/have this
group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
In groups before which worked I had this
all_Light:
name: all_lights
entities:
- light.53411381807d3a59486b #bedroom
- light.53411381807d3a59491c #family room
- light.73371318ecfabc9a8f79 #Guest Bedroom
changed to this
all_Light:
name: all_lights
entities:
- light.Bedroom
- light.family_room
- light.guest_bedroom
Also when using the same names in automation nothing works any more ex
worked
- alias: Turn on picture, fence lights
trigger:
- platform: sun
event: sunset
offset: "-01:00:00"
action:
service: homeassistant.turn_on
entity_id:
- switch.20808347bcddc2975adf #Fence light
- switch.0673468284f3ebbbd7f7 #picture light
now doesn’t work
- alias: Turn on picture, fence lights
trigger:
- platform: sun
event: sunset
offset: "-01:00:00"
action:
service: homeassistant.turn_on
entity_id:
- switch.Fence_light
- switch.picture_light