mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-22 08:46:51 +00:00
Remove Pushetta integration (#13112)
This commit is contained in:
parent
e4dfb892be
commit
a2f5019791
@ -1,58 +0,0 @@
|
||||
---
|
||||
title: Pushetta
|
||||
description: Instructions on how to add Pushetta notifications to Home Assistant.
|
||||
ha_category:
|
||||
- Notifications
|
||||
ha_release: pre 0.7
|
||||
ha_domain: pushetta
|
||||
---
|
||||
|
||||
The `pushetta` notify platform uses [Pushetta](http://www.pushetta.com) to delivery notifications from Home Assistant to your devices.
|
||||
|
||||
To retrieve the API token, log into your account at [http://www.pushetta.com](http://www.pushetta.com) and go to your **Dashboard**. Create a new channel by clicking on **Channels** and then **Add a Channel**.
|
||||
|
||||
To enable Pushetta notifications in your installation, add the following to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
notify:
|
||||
- name: NOTIFIER_NAME
|
||||
platform: pushetta
|
||||
api_key: YOUR_API_KEY
|
||||
channel_name: YOUR_CHANNEL_NAME
|
||||
```
|
||||
|
||||
{% configuration %}
|
||||
name:
|
||||
description: Setting the optional parameter `name` allows multiple notifiers to be created. The notifier will bind to the service `notify.NOTIFIER_NAME`.
|
||||
required: false
|
||||
default: notify
|
||||
type: string
|
||||
api_key:
|
||||
description: Your API key for Pushetta.
|
||||
required: true
|
||||
type: string
|
||||
channel_name:
|
||||
description: The name of your channel.
|
||||
required: true
|
||||
type: string
|
||||
send_test_msg:
|
||||
description: Disable/enable the test message send on Home Assistant's startup to test the API key and the existence of the channel.
|
||||
required: false
|
||||
default: false
|
||||
type: boolean
|
||||
{% endconfiguration %}
|
||||
|
||||
It's easy to test your Pushetta setup outside of Home Assistant. Assuming you have a channel `home-assistant`, just fire a request and check the channel page in the dashboard for a new message.
|
||||
|
||||
```bash
|
||||
curl -X POST \
|
||||
-H "Authorization: Token YOUR_API_KEY" \
|
||||
-H "Content-Type: application/json" \
|
||||
-d "{ \"body\" : \"Hello World\", \"message_type\" : \"text/plain\" }" \
|
||||
http://api.pushetta.com/api/pushes/home-assistant/
|
||||
```
|
||||
|
||||
For further details, please check the [API](http://www.pushetta.com/pushetta-api/).
|
||||
|
||||
To use notifications, please see the [getting started with automation page](/getting-started/automation/).
|
@ -24,12 +24,12 @@ homeassistant:
|
||||
|
||||
#### Changes
|
||||
|
||||
<img src='/images/supported_brands/honeywell.png' style='clear: right; border:none; box-shadow: none; float: right; margin-bottom: 16px;' height='50' /><img src='/images/supported_brands/orvibo.png' style='clear: right; border:none; box-shadow: none; float: right; margin-bottom: 16px;' height='50' /><img src='/images/supported_brands/pushetta.png' style='clear: right; border:none; box-shadow: none; float: right; margin-bottom: 16px;' height='50' />
|
||||
<img src='/images/supported_brands/honeywell.png' style='clear: right; border:none; box-shadow: none; float: right; margin-bottom: 16px;' height='50' /><img src='/images/supported_brands/orvibo.png' style='clear: right; border:none; box-shadow: none; float: right; margin-bottom: 16px;' height='50' />
|
||||
|
||||
* Thermostat: [Honeywell](/integrations/honeywell/) now supported ([@sander76])
|
||||
* Switch: [Orvibo](/integrations/orvibo) now supported ([@happyleavesaoc])
|
||||
* Camera: [mjpeg camera's](/integrations/mjpeg) now supported ([@ryanturner])
|
||||
* Notify: [Pushetta](/integrations/pushetta) now supported ([@fabaff])
|
||||
* Notify: Pushetta now supported ([@fabaff])
|
||||
* Light: [MQTT](/integrations/light.mqtt/) now supported ([@hexxter])
|
||||
* Light: [Z-Wave](/integrations/zwave/) now supported ([@leoc])
|
||||
* Switch: [Z-Wave](/integrations/zwave/) now supported ([@leoc])
|
||||
|
@ -90,7 +90,7 @@ sensor
|
||||
- Wink: Support for Wink Smoke and CO detectors ([@w1ll1am23])
|
||||
- Sensor: [TED5000][ted5000] sensor was included ([@gwendalg])
|
||||
- Sensor: Support for [Västtrafik][vasttrafik] public transport ([@persandstrom])
|
||||
- Notify: [Pushetta][pushetta] no longer sends message on start up ([@Danielhiversen])
|
||||
- Notify: Pushetta no longer sends message on start up ([@Danielhiversen])
|
||||
- Sensor: [Forecast.io][forecast] sensor was replaced by [Dark Sky][darksky] ([@fabaff])
|
||||
- Device Tracker: The `known_device.yaml` file is now validated ([@kellerza])
|
||||
- Minor features and bug fixes by [@tchellomello], [@pavoni], [@fabaff], [@pvizeli], [@lwis], [@turbokongen], [@Danielhiversen], [@persandstrom], [@balloob], [@robbiet480], [@sam-io], [@bbangert], and you if you are missing here.
|
||||
@ -170,7 +170,6 @@ sensor
|
||||
[mysensors-cover]: /integrations/cover.mysensors/
|
||||
[notebook]: http://nbviewer.jupyter.org/github/home-assistant/home-assistant-notebooks/blob/master/database-statistics.ipynb
|
||||
[pi-image]: /blog/2016/10/01/we-have-raspberry-image-now/
|
||||
[pushetta]: /integrations/pushetta
|
||||
[pwrctrl-switch]: /integrations/anel_pwrctrl
|
||||
[rest-sensor]: /integrations/rest
|
||||
[stats-sensor]: /integrations/statistics
|
||||
|
@ -734,7 +734,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
|
||||
- Report unavailable entities to google ([@elupus] - [#28501]) ([google_assistant docs])
|
||||
- Add initial test suite for arcam_fmj integration ([@elupus] - [#29335])
|
||||
- Fix uvloop warning ([@pvizeli] - [#29341]) ([stream docs])
|
||||
- Move imports to top for pushetta ([@springstan] - [#29332]) ([pushetta docs])
|
||||
- Move imports to top for pushetta ([@springstan] - [#29332])
|
||||
- Move imports to top for pencom ([@springstan] - [#29348]) ([pencom docs])
|
||||
- Include telegram_bot message id for all messages ([@luca-angemi] - [#29315]) ([telegram_bot docs])
|
||||
- Ignore state of climate entities in prometheus ([@springstan] - [#29346]) ([prometheus docs])
|
||||
@ -1677,7 +1677,6 @@ Experiencing issues introduced by this release? Please report them in our [issue
|
||||
[proxmoxve docs]: /integrations/proxmoxve/
|
||||
[ps4 docs]: /integrations/ps4/
|
||||
[pulseaudio_loopback docs]: /integrations/pulseaudio_loopback/
|
||||
[pushetta docs]: /integrations/pushetta/
|
||||
[python_script docs]: /integrations/python_script/
|
||||
[qbittorrent docs]: /integrations/qbittorrent/
|
||||
[qnap docs]: /integrations/qnap/
|
||||
|
@ -585,7 +585,6 @@
|
||||
/components/notify.nfandroidtv /integrations/nfandroidtv
|
||||
/components/notify.prowl /integrations/prowl
|
||||
/components/notify.pushbullet /integrations/pushbullet
|
||||
/components/notify.pushetta /integrations/pushetta
|
||||
/components/notify.pushover /integrations/pushover
|
||||
/components/notify.pushsafer /integrations/pushsafer
|
||||
/components/notify.rocketchat /integrations/rocketchat
|
||||
@ -1695,7 +1694,6 @@
|
||||
/components/pulseaudio_loopback /integrations/pulseaudio_loopback
|
||||
/components/push /integrations/push
|
||||
/components/pushbullet /integrations/pushbullet
|
||||
/components/pushetta /integrations/pushetta
|
||||
/components/pushover /integrations/pushover
|
||||
/components/pushsafer /integrations/pushsafer
|
||||
/components/pvoutput /integrations/pvoutput
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 5.9 KiB |
Loading…
x
Reference in New Issue
Block a user