You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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.
0 commit comments