I’m trying to get HTML5 notifications working with HA in the homeassistant/raspberrypi3-homeassistant Docker image. I have the GCM app up, my domain is verified, but they still won’t work. I was able to enable notifications from Chrome on my phone, so it seems the configuration thinks it’s set up, but trying to trigger the automation to send the notification does nothing.
Configuration:
notify:
- name: "HTML Push"
platform: html5
gcm_api_key: !secret gcm_key
gcm_sender_id: !secret gcm_id
Relevant automation:
- id: basement_door_opened
alias: "Basement door has been opened"
trigger:
- platform: state
entity_id:
- binary_sensor.basement_door
to: 'on'
action:
- service: notify.html5
data:
message: 'Door open'
I’m sure I’m missing something simple because I’m pretty new to the Hass life.