Hi,
I have an automation that feed a group upon restart and every night.
It worked until i restart Home Assistant. Here is code
alias: Batteries Levels Group Feed
description: ""
trigger:
- platform: homeassistant
event: start
- platform: time
at: "11:30:00"
condition: []
action:
- service: group.set
data:
name: Entities with low battery
entities: >-
{{ states.sensor | selectattr('attributes.device_class', 'defined') |
selectattr('attributes.device_class', 'eq', 'battery') |
map(attribute='entity_id') | list }}
object_id: batteries_levels_sensors
icon: mdi:battery
mode: single
I got this error in UI:
A this poin there should be the GUI for configuring service, but i got this. How can I fix this?
Thanks