Hi all,
netatmo_event doesn’t seem to fire in my home assistant. Not even when I fire the event myself using the developer tools.
These are my facts currently:
- my Home Assistant ports are open/reachable
- I can acces my HA externally via a public subdomain
- I have Home Assistant Netatmo integration installed and I have my Netatmo Themostat + Netatmo Presence camera working in my dashboard.
- I have an automation listening for the trigger netatmo_event
- I have my app set up in https://dev.netatmo.com/
- I follow the netatmo cookbook examples in regards to setting up an automation
alias: automationMotionAthome
description: motion detected at home
trigger:
- platform: event
event_type: netatmo_event
event_data:
type: human
id: anidforthisnetatmothing
condition: []
action:
- service: mqtt.publish
data:
topic: netatmo/update
payload_template: |
{{ trigger.json | tojson }}
retain: true
mode: restart
- I have set the following 2 credentials in configuration.yaml
netatmo:
client_id: !secret netatmo_client_id
client_secret: !secret netatmo_client_secret
What am I missing?