mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-19 15:26:59 +00:00
Update pushover notify component configuration (#7628)
This commit is contained in:
parent
890c1f4ec9
commit
dc6c55bf26
@ -12,7 +12,6 @@ ha_category: Notifications
|
|||||||
ha_release: pre 0.7
|
ha_release: pre 0.7
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
The [Pushover service](https://pushover.net/) is a platform for the notify component. This allows components to send messages to the user using Pushover.
|
The [Pushover service](https://pushover.net/) is a platform for the notify component. This allows components to send messages to the user using Pushover.
|
||||||
|
|
||||||
## {% linkable_title Configuration %}
|
## {% linkable_title Configuration %}
|
||||||
@ -30,11 +29,21 @@ notify:
|
|||||||
user_key: YOUR_USER_KEY
|
user_key: YOUR_USER_KEY
|
||||||
```
|
```
|
||||||
|
|
||||||
Configuration variables:
|
{% configuration %}
|
||||||
|
name:
|
||||||
- **name** (*Optional*): 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`.
|
description: Setting the optional parameter `name` allows multiple notifiers to be created. The notifier will bind to the service `notify.NOTIFIER_NAME`.
|
||||||
- **api_key** (*Required*): Your API key.
|
required: false
|
||||||
- **user_key** (*Required*): Your user key for Pushover.
|
default: notify
|
||||||
|
type: string
|
||||||
|
api_key:
|
||||||
|
description: Your API key.
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
user_key:
|
||||||
|
description: Your user key for Pushover.
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
{% endconfiguration %}
|
||||||
|
|
||||||
Example Automation:
|
Example Automation:
|
||||||
|
|
||||||
@ -58,6 +67,7 @@ When sending a notification, optional parameters can also be set as per the push
|
|||||||
Example notification triggered from the Alexa component for an intents is shown below which also uses [Automation Templating](/getting-started/automation-templating/) for the message:
|
Example notification triggered from the Alexa component for an intents is shown below which also uses [Automation Templating](/getting-started/automation-templating/) for the message:
|
||||||
|
|
||||||
{% raw %}
|
{% raw %}
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yaml entries
|
# Example configuration.yaml entries
|
||||||
alexa:
|
alexa:
|
||||||
@ -74,4 +84,5 @@ alexa:
|
|||||||
device: pixel
|
device: pixel
|
||||||
url: "https://www.home-assistant.io/"
|
url: "https://www.home-assistant.io/"
|
||||||
```
|
```
|
||||||
|
|
||||||
{% endraw %}
|
{% endraw %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user