mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-08 03:59:00 +00:00
1.1 KiB
1.1 KiB
layout, title, description, date, sidebar, comments, sharing, footer, ha_category, ha_release
layout | title | description | date | sidebar | comments | sharing | footer | ha_category | ha_release |
---|---|---|---|---|---|---|---|---|---|
page | Simplepush | Instructions how to add Simplepush notifications to Home Assistant. | 2016-09-11 18:00 | true | false | true | true | Notifications | 0.29 |
The simplepush
platform uses Simplepush to delivery notifications from Home Assistant to your Android device.
To add Simplepush to your installation, add the following to your configuration.yaml
file:
# Example configuration.yaml entry
notify:
- name: NOTIFIER_NAME
platform: simplepush
device_key: ABCDE
Configuration variables:
- name (Optional): Setting the optional parameter
name
allows multiple notifiers to be created. The default value isnotify
. The notifier will bind to the servicenotify.NOTIFIER_NAME
. - device_key (Required): The device key of your device.
To test if the service works, just send a message with curl
from the command-line.
$ curl 'https://api.simplepush.io/send/device_key/title/message'
To use notifications, please see the getting started with automation page.