I’m using the latest HA version.
After I added a lot of devices (Hue, Netatmo, Bosch Smart Home, Alexa, etc.), I tried to use Automations for the first time.
Unfortunately all of my Automations are never triggered by HA. They are working when calling them manually.
The following was added with UI → Devices → Netatmo Outdoor module → Temperature changed:
alias: Neue Automatisierung 123
description: ""
trigger:
- type: temperature
platform: device
device_id: 1f0d7c93ebc4863c37f0101a71335956
entity_id: e00d0ae19750779ca3a3a4e997d8b5ad
domain: sensor
above: 1
condition: []
action:
- action: input_boolean.turn_on
target:
entity_id: input_boolean.sonnenschutz_vorgarten
data: {}
mode: single
Or this one (instead of Device I tried Entity in the UI → Hue Motion Sensor → light level changed):
alias: Neue Automatisierung
description: ""
trigger:
- platform: numeric_state
entity_id:
- sensor.bewegungssensor_vorgarten_beleuchtungsstarke
attribute: light_level
above: 5
condition: []
action:
- action: input_boolean.turn_on
target:
entity_id: input_boolean.sonnenschutz_vorgarten
data: {}
mode: single
Or the same instead of entity I selected Device in the UI:
alias: Sonnenschutz Vorgarten aktivieren
description: ""
trigger:
- type: illuminance
platform: device
device_id: 3be36d125d8d9f8d956315704892689a
entity_id: 8c9998c81dc25ebf1660491ba849710a
domain: sensor
above: 1
condition:
- condition: time
after: "06:00:00"
before: "13:00:00"
action:
- action: input_boolean.turn_on
target:
entity_id: input_boolean.sonnenschutz_vorgarten
data: {}
mode: single
Also none of these automations are triggered when using the temperature of the hue motion sensor.
All of these devices / entities are working fine, showing the current values and are updating all the time. The automations are also shown in the list on each device specific info page.
I also tried to disable/enable all automations. I also reboot the whole system.
After I added all those devices I directly renamed a lot of them. I also permitted to automatically rename all those entities after renaming the devices. While renaming none of those devices or entities where ever used by HA. I created the automations days after I renamed the new added devices.
When creating a new input boolen (helper) and using this input boolean as trigger for an automation, the automation is triggered. So automations in general are working, but none of my devices are triggering automations after changing their states / values.