-
-
Notifications
You must be signed in to change notification settings - Fork 7.7k
New component tplink_lte with SMS notify service #6485
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
e90d784
New component tplink_lte with SMS notify service
e061c47
:pencil2: Tweak
frenck e93a86c
:pencil2: Tweak
frenck 43b34ca
Updated configuration to handle notify discovery. Bumped ha_release t…
afe0ce8
Bumped ha_release to 0.83. Added ha_io_class to notify
1bd75ef
:pencil2: Typo
frenck File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
layout: page | ||
title: "TP-Link LTE Notify" | ||
description: "Instructions on how to add TP-Link LTE notifications to Home Assistant." | ||
date: 2018-10-03 21:30 | ||
sidebar: true | ||
comments: false | ||
sharing: true | ||
footer: true | ||
logo: tp-link.png | ||
ha_category: Notifications | ||
ha_release: "0.83" | ||
ha_iot_class: "Local Polling" | ||
--- | ||
|
||
The `tplink_lte` platform allows you to use a TP-Link LTE router for notifications from Home Assistant. The message will be sent as an SMS text message. | ||
|
||
See the [TP-Link LTE component](/components/tplink_lte/) for configuration and setup instructions. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
--- | ||
layout: page | ||
title: "TP-Link LTE" | ||
description: "Instructions on how to integrate your TP-Link LTE routers within Home Assistant." | ||
date: 2018-10-03 21:30 | ||
sidebar: true | ||
comments: false | ||
sharing: true | ||
footer: true | ||
logo: tp-link.png | ||
ha_release: 0.83 | ||
ha_category: Network | ||
ha_iot_class: "Local Polling" | ||
--- | ||
|
||
The TP-Link LTE integration for Home Assistant allows you to observe and control TP-Link LTE routers, currently only tested with TL-MR6400 (firmware 1.4.0). | ||
|
||
The integration provides a notification service that will send an SMS. | ||
|
||
## {% linkable_title Configuration %} | ||
|
||
To enable the component, add the following lines to your `configuration.yaml` file: | ||
|
||
```yaml | ||
# Example configuration.yaml entry | ||
tplink_lte: | ||
- host: IP_ADDRESS | ||
password: SECRET | ||
notify: | ||
- name: sms1 | ||
target: "+15105550123" | ||
- name: sms2 | ||
target: "+55520525252" | ||
``` | ||
|
||
{% configuration %} | ||
host: | ||
description: The IP address of the router web interface. | ||
required: true | ||
type: string | ||
password: | ||
description: The password used for the router web interface. | ||
required: true | ||
type: string | ||
notify: | ||
description: A list of notification services connected to this specific host. | ||
required: false | ||
type: list | ||
keys: | ||
target: | ||
description: The phone number of a default recipient or a list with multiple recipients. | ||
required: true | ||
type: string, list | ||
name: | ||
description: The name of the notification service. | ||
required: false | ||
default: notify | ||
type: string | ||
{% endconfiguration %} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.