mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-19 07:17:14 +00:00
🚜 Merges/Redirect Netgear LTE component pages (#8740)
This commit is contained in:
parent
f567e77a0d
commit
ae985d87a3
@ -9,12 +9,23 @@ sharing: true
|
|||||||
footer: true
|
footer: true
|
||||||
logo: netgear.png
|
logo: netgear.png
|
||||||
ha_release: 0.72
|
ha_release: 0.72
|
||||||
ha_category: Network
|
ha_category:
|
||||||
|
- Network
|
||||||
|
- Notifications
|
||||||
|
- Sensor
|
||||||
ha_iot_class: "Local Polling"
|
ha_iot_class: "Local Polling"
|
||||||
|
redirect_from:
|
||||||
|
- /components/notify.netgear_lte/
|
||||||
|
- /components/sensor.netgear_lte/
|
||||||
---
|
---
|
||||||
|
|
||||||
The Netgear LTE integration for Home Assistant allows you to observe and control [Netgear LTE modems](https://www.netgear.com/home/products/mobile-broadband/lte-modems/default.aspx), currently only tested with LB2120.
|
The Netgear LTE integration for Home Assistant allows you to observe and control [Netgear LTE modems](https://www.netgear.com/home/products/mobile-broadband/lte-modems/default.aspx), currently only tested with LB2120.
|
||||||
|
|
||||||
|
There is currently support for the following device types within Home Assistant:
|
||||||
|
|
||||||
|
- [Notifications](#notifications)
|
||||||
|
- [Sensor](#sensor)
|
||||||
|
|
||||||
The integration provides:
|
The integration provides:
|
||||||
|
|
||||||
* a notify service that will send an SMS
|
* a notify service that will send an SMS
|
||||||
@ -34,11 +45,70 @@ netgear_lte:
|
|||||||
|
|
||||||
{% configuration %}
|
{% configuration %}
|
||||||
host:
|
host:
|
||||||
description: The IP address of the modem web interface.
|
description: The IP address of the modem web interface.
|
||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
password:
|
password:
|
||||||
description: The password used for the modem web interface.
|
description: The password used for the modem web interface.
|
||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
|
{% endconfiguration %}
|
||||||
|
|
||||||
|
## {% linkable_title Notifications %}
|
||||||
|
|
||||||
|
The `netgear_lte` platform allows you to use a Netgear LTE modem for notifications from Home Assistant. The message will be sent as an SMS text message.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Example configuration.yaml entry
|
||||||
|
notify:
|
||||||
|
- platform: netgear_lte
|
||||||
|
name: sms
|
||||||
|
target: "+15105550123"
|
||||||
|
```
|
||||||
|
|
||||||
|
{% configuration %}
|
||||||
|
target:
|
||||||
|
description: The phone number of a default recipient or a list with multiple recipients.
|
||||||
|
required: true
|
||||||
|
type: string, list
|
||||||
|
name:
|
||||||
|
description: Setting the optional parameter `name` allows multiple notifiers to be created.
|
||||||
|
required: false
|
||||||
|
default: notify
|
||||||
|
type: string
|
||||||
|
host:
|
||||||
|
description: The modem to use. Not needed if you only have one.
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
{% endconfiguration %}
|
||||||
|
|
||||||
|
## {% linkable_title Sensor %}
|
||||||
|
|
||||||
|
The `netgear_lte` sensor platform allows you to monitor your Netgear LTE modem.
|
||||||
|
|
||||||
|
To enable the sensor, add the following lines to your `configuration.yaml` file:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Example configuration.yaml entry
|
||||||
|
sensor:
|
||||||
|
- platform: netgear_lte
|
||||||
|
sensors:
|
||||||
|
- sms
|
||||||
|
- usage
|
||||||
|
```
|
||||||
|
|
||||||
|
{% configuration %}
|
||||||
|
sensors:
|
||||||
|
description: Sensor types to create.
|
||||||
|
required: true
|
||||||
|
type: list
|
||||||
|
keys:
|
||||||
|
sms:
|
||||||
|
description: Number of unread SMS messages in the modem inbox.
|
||||||
|
usage:
|
||||||
|
description: Amount of data transferred.
|
||||||
|
host:
|
||||||
|
description: The modem to use. Not needed if you only have one.
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
@ -1,41 +0,0 @@
|
|||||||
---
|
|
||||||
layout: page
|
|
||||||
title: "Netgear LTE Notify"
|
|
||||||
description: "Instructions on how to add Netgear LTE notifications to Home Assistant."
|
|
||||||
date: 2018-06-06 23:00
|
|
||||||
sidebar: true
|
|
||||||
comments: false
|
|
||||||
sharing: true
|
|
||||||
footer: true
|
|
||||||
logo: netgear.png
|
|
||||||
ha_category: Notifications
|
|
||||||
ha_release: 0.72
|
|
||||||
---
|
|
||||||
|
|
||||||
The `netgear_lte` platform allows you to use a Netgear LTE modem for notifications from Home Assistant. The message will be sent as an SMS text message.
|
|
||||||
|
|
||||||
This requires you to have set up the [Netgear LTE component](/components/netgear_lte/).
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# Example configuration.yaml entry
|
|
||||||
notify:
|
|
||||||
- platform: netgear_lte
|
|
||||||
name: sms
|
|
||||||
target: "+15105550123"
|
|
||||||
```
|
|
||||||
|
|
||||||
{% configuration %}
|
|
||||||
target:
|
|
||||||
description: The phone number of a default recipient or a list with multiple recipients.
|
|
||||||
required: true
|
|
||||||
type: string, list
|
|
||||||
name:
|
|
||||||
description: Setting the optional parameter `name` allows multiple notifiers to be created.
|
|
||||||
required: false
|
|
||||||
default: notify
|
|
||||||
type: string
|
|
||||||
host:
|
|
||||||
description: The modem to use. Not needed if you only have one.
|
|
||||||
required: false
|
|
||||||
type: string
|
|
||||||
{% endconfiguration %}
|
|
@ -1,47 +0,0 @@
|
|||||||
---
|
|
||||||
layout: page
|
|
||||||
title: "Netgear LTE Sensor"
|
|
||||||
description: "Instructions on how to integrate Netgear LTE sensors into Home Assistant."
|
|
||||||
date: 2018-06-06 23:00
|
|
||||||
sidebar: true
|
|
||||||
comments: false
|
|
||||||
sharing: true
|
|
||||||
footer: true
|
|
||||||
logo: netgear.png
|
|
||||||
ha_release: 0.72
|
|
||||||
ha_category: Network
|
|
||||||
ha_iot_class: "Local Polling"
|
|
||||||
---
|
|
||||||
|
|
||||||
The `netgear_lte` sensor platform allows you to monitor your Netgear LTE modem.
|
|
||||||
|
|
||||||
This requires you to have set up the [Netgear LTE component](/components/netgear_lte/).
|
|
||||||
|
|
||||||
## {% linkable_title Configuration %}
|
|
||||||
|
|
||||||
To enable the sensor, add the following lines to your `configuration.yaml` file:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# Example configuration.yaml entry
|
|
||||||
sensor:
|
|
||||||
- platform: netgear_lte
|
|
||||||
sensors:
|
|
||||||
- sms
|
|
||||||
- usage
|
|
||||||
```
|
|
||||||
|
|
||||||
{% configuration %}
|
|
||||||
sensors:
|
|
||||||
description: Sensor types to create.
|
|
||||||
required: true
|
|
||||||
type: list
|
|
||||||
keys:
|
|
||||||
sms:
|
|
||||||
description: Number of unread SMS messages in the modem inbox.
|
|
||||||
usage:
|
|
||||||
description: Amount of data transferred.
|
|
||||||
host:
|
|
||||||
description: The modem to use. Not needed if you only have one.
|
|
||||||
required: false
|
|
||||||
type: string
|
|
||||||
{% endconfiguration %}
|
|
Loading…
x
Reference in New Issue
Block a user