Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bbba17a

Browse files
andtos90frenck
authored andcommitted
New component tplink_lte with SMS notify service (home-assistant#6485)
* New component tplink_lte with SMS notify service * ✏️ Tweak * ✏️ Tweak * Updated configuration to handle notify discovery. Bumped ha_release to 0.82 * Bumped ha_release to 0.83. Added ha_io_class to notify * ✏️ Typo
1 parent 6b57b80 commit bbba17a

File tree

2 files changed

+77
-0
lines changed

2 files changed

+77
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
layout: page
3+
title: "TP-Link LTE Notify"
4+
description: "Instructions on how to add TP-Link LTE notifications to Home Assistant."
5+
date: 2018-10-03 21:30
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: tp-link.png
11+
ha_category: Notifications
12+
ha_release: "0.83"
13+
ha_iot_class: "Local Polling"
14+
---
15+
16+
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.
17+
18+
See the [TP-Link LTE component](/components/tplink_lte/) for configuration and setup instructions.
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
---
2+
layout: page
3+
title: "TP-Link LTE"
4+
description: "Instructions on how to integrate your TP-Link LTE routers within Home Assistant."
5+
date: 2018-10-03 21:30
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: tp-link.png
11+
ha_release: 0.83
12+
ha_category: Network
13+
ha_iot_class: "Local Polling"
14+
---
15+
16+
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).
17+
18+
The integration provides a notification service that will send an SMS.
19+
20+
## {% linkable_title Configuration %}
21+
22+
To enable the component, add the following lines to your `configuration.yaml` file:
23+
24+
```yaml
25+
# Example configuration.yaml entry
26+
tplink_lte:
27+
- host: IP_ADDRESS
28+
password: SECRET
29+
notify:
30+
- name: sms1
31+
target: "+15105550123"
32+
- name: sms2
33+
target: "+55520525252"
34+
```
35+
36+
{% configuration %}
37+
host:
38+
description: The IP address of the router web interface.
39+
required: true
40+
type: string
41+
password:
42+
description: The password used for the router web interface.
43+
required: true
44+
type: string
45+
notify:
46+
description: A list of notification services connected to this specific host.
47+
required: false
48+
type: list
49+
keys:
50+
target:
51+
description: The phone number of a default recipient or a list with multiple recipients.
52+
required: true
53+
type: string, list
54+
name:
55+
description: The name of the notification service.
56+
required: false
57+
default: notify
58+
type: string
59+
{% endconfiguration %}

0 commit comments

Comments
 (0)