Skip to content

Commit bd151e8

Browse files
c727cdce8p
authored andcommitted
Revert "Remove simplepush.io home-assistant#5372" (home-assistant#5468)
1 parent 548c014 commit bd151e8

File tree

2 files changed

+57
-0
lines changed

2 files changed

+57
-0
lines changed
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
---
2+
layout: page
3+
title: "Simplepush"
4+
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.
52+
53+
```bash
54+
$ curl 'https://api.simplepush.io/send/device_key/title/message'
55+
```
56+
57+
To use notifications, please see the [getting started with automation page](/getting-started/automation/).
5.35 KB
Loading

0 commit comments

Comments
 (0)