mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-08 12:08:58 +00:00

* Split MQTT documentation * Add more details * Move content to /docs * Enable sidebar * Move content to /docs * Enable sidebar * Move content * Update links * Remove wizard stuff * Enable sidebar * Minor changes * Move MQTT parts to /docs * update links * Update links and sync content * Fix link * Enable sidebar * Remove navigation * Remove navigation and other minor updates * Update links * Add overview page * Make title linkable * Update * Plit content * Update links * Rearrange content * New getting-started section * Add icons for docs * Update for new structure * Update for new structure * Add docs navigation * Add docs overview page * Remove ecosystem navigation * Add docs and remove other collections * Move ecosystem to docs * Remove duplicate files * Re-add ecosystem overview * Move to ecosystem * Fix permission * Update navigation * Remove collection * Move overview to right folder * Move mqtt to upper level * Move notebook to ecosystem * Remove un-used files * Add one more rectangle for iOS * Move two parts back from docs and rename Run step * Remove colon * update getting-started section * Add redirect * Update * Update navigation
60 lines
1.7 KiB
Markdown
60 lines
1.7 KiB
Markdown
---
|
|
layout: page
|
|
title: "Basic Notifications"
|
|
description: "Basic notes about iOS notifications"
|
|
date: 2016-10-25 15:00:00 -0700
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
redirect_from: /ecosystem/ios/notifications/basic/
|
|
---
|
|
|
|
The iOS notify platform accepts the standard `title`, `message` and `target` parameters. The iOS notify platform supports targets as services. Assuming that you did not set a `name` when configuring the platform you should find all your registered and notification-enabled iOS devices available as notify targets as services with names prefixed "notify.ios_" and then the device name you entered at setup.
|
|
|
|
Notes:
|
|
|
|
* `title` only displays on Apple Watch and iOS 10 devices.
|
|
|
|
* `target` can be used to specific a single device using its PushID, found in `ios.conf`. The preferred way of providing a target is through a target specific notify service.
|
|
|
|
<p class='img'>
|
|
<img src='/images/ios/example.png' />
|
|
A push notification showing all of the basic options `title` and `message` as well as `subtitle` and [actions](/ecosystem/ios/notifications/actions/).
|
|
</p>
|
|
|
|
### {% linkable_title Enhancing basic notifications %}
|
|
|
|
#### Badge
|
|
You can set the icon badge in the payload:
|
|
|
|
```yaml
|
|
automation:
|
|
- alias: Notify iOS app
|
|
trigger:
|
|
...
|
|
action:
|
|
service: notify.iOSApp
|
|
data:
|
|
message: "Something happened at home!"
|
|
data:
|
|
push:
|
|
badge: 5
|
|
```
|
|
|
|
#### Subtitle
|
|
iOS 10 supports a subtitle in addition to the title:
|
|
|
|
```yaml
|
|
automation
|
|
- alias: Notify iOS app
|
|
trigger:
|
|
...
|
|
action:
|
|
service: notify.iOSApp
|
|
data:
|
|
message: "Something happened at home!"
|
|
data:
|
|
subtitle: "Subtitle goes here"
|
|
```
|