Skip to content
EN | DE

Home Assistant

Parameters

NameDescriptionValueLevel
uriHome Assistant URI
Example: http://homeassistant.local:8123
optional
notifyNotify service

Home Assistant notify service in the form domain.service (e.g. notify.mobile_app_android). Leave empty to create a persistent notification in the HA UI.

Example: notify.mobile_app_android
optional
criticalCritical notification

Sets ttl=0 and priority=high for immediate delivery even in battery saver mode.

Default: false
optional
groupNotification group

Groups notifications on the device. Same group collapses multiple alerts together.

Example: evcc
optional
notification_channelNotification channel

Android notification channel (controls sound and importance). E.g. alarm_stream for alarm sound.

Example: alarm_stream
optional
insecureAccept self-signed certificatesadvanced
Configuration example for evcc.yaml

If you don't want to configure via the UI, you can alternatively use this YAML block.

messaging:
services:
- type: template
template: homeassistant
uri: http://homeassistant.local:8123 # Home Assistant URI
notify: notify.mobile_app_android # Notify service, Home Assistant notify service in the form `domain.service` (e.g. `notify.mobile_app_android`). Leave empty to create a persistent notification in the HA UI. (optional)
critical: false # Critical notification, Sets ttl=0 and priority=high for immediate delivery even in battery saver mode. (optional)
group: evcc # Notification group, Groups notifications on the device. Same group collapses multiple alerts together. (optional)
notification_channel: alarm_stream # Notification channel, Android notification channel (controls sound and importance). E.g. `alarm_stream` for alarm sound. (optional)
insecure: # Accept self-signed certificates, optional