-
Notifications
You must be signed in to change notification settings - Fork 38
Description
Today I had some issues with the Entso-E integration (meanwhile succesfully removed in safe mode) and since those issues this error is shown:
When I look in my automation in YAML everything seems normal. When using the visual editor there is a difference between starting and stopping the Presence Simulation service. When starting the correct entity is shown in a pull-down menu:
When stopping the service the correct entity ID wasn't shown at all and I have manually added it to the action data section (but the pull down menu is missing):
The error is still shown and it seems that there is something wrong, but I can't figure out what. I have already re-downloaded the Presence Simulation add-on, but that didn't change anything either. Relevant part of the automation in YAML:
actions:
- alias: Start presence simulation
if:- condition: trigger
id:- Start presence simulation
- condition: numeric_state
entity_id: zone.home
below: 1
then: - metadata: {}
data:
entity_id: light.vacation_lights
action: presence_simulation.start
- condition: trigger
- alias: Stop presence simulation
if:- condition: trigger
id:- Stop presence simulation
then:
- Stop presence simulation
- metadata: {}
data:
entity_id: light.vacation_lights
action: presence_simulation.stop
- condition: trigger
Thanks in advance for any help.