You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Instructions on how to add Simplepush notifications to Home Assistant."
5
+
date: 2016-09-11 18:00
6
+
sidebar: true
7
+
comments: false
8
+
sharing: true
9
+
footer: true
10
+
logo: simplepush.png
11
+
ha_category: Notifications
12
+
ha_release: 0.29
13
+
---
14
+
15
+
16
+
The `simplepush` platform uses [Simplepush](https://simplepush.io/) to delivery notifications from Home Assistant to your Android device. Unlike similar apps the Simplepush app requires no registration.
17
+
18
+
To add Simplepush to your installation, add the following to your `configuration.yaml` file:
19
+
20
+
```yaml
21
+
# Example configuration.yaml entry
22
+
notify:
23
+
- name: NOTIFIER_NAME
24
+
platform: simplepush
25
+
device_key: ABCDE
26
+
```
27
+
28
+
{% configuration %}
29
+
name:
30
+
description: Setting the optional parameter `name` allows multiple notifiers to be created. The default value is `notify`. The notifier will bind to the service `notify.NOTIFIER_NAME`.
31
+
required: false
32
+
type: string
33
+
device_key:
34
+
description: The device key of your device.
35
+
required: true
36
+
type: string
37
+
event:
38
+
description: The event for the events.
39
+
required: false
40
+
type: string
41
+
password:
42
+
description: The password of the encryption used by your device.
43
+
required: inclusive
44
+
type: string
45
+
salt:
46
+
description: The salt used by your device.
47
+
required: inclusive
48
+
type: string
49
+
{% endconfiguration %}
50
+
51
+
To test if the service works, just send a message with `curl` from the command-line.
0 commit comments