mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-16 13:56:53 +00:00
Various small fixes - a (#6977)
* Various small fixes Add configuration and other titles Remove empty lines Fix indentation for configuration block Reorder key list to be in line with the rest Delete empty default value and fixed value type * None is a valid value
This commit is contained in:
parent
bf239b9480
commit
7eace6c371
@ -15,6 +15,8 @@ ha_iot_class: "Local Push"
|
|||||||
|
|
||||||
The ADS (automation device specification) describes a device-independent and fieldbus independent interface for communication between [Beckhoff](https://www.beckhoff.com/) automation devices running [TwinCAT](http://www.beckhoff.hu/english.asp?twincat/default.htm) and other devices implementing this interface.
|
The ADS (automation device specification) describes a device-independent and fieldbus independent interface for communication between [Beckhoff](https://www.beckhoff.com/) automation devices running [TwinCAT](http://www.beckhoff.hu/english.asp?twincat/default.htm) and other devices implementing this interface.
|
||||||
|
|
||||||
|
## {% linkable_title Configuration %}
|
||||||
|
|
||||||
To enable ADS, add the following lines to your `configuration.yaml` file:
|
To enable ADS, add the following lines to your `configuration.yaml` file:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
@ -25,18 +27,18 @@ ads:
|
|||||||
```
|
```
|
||||||
|
|
||||||
{% configuration %}
|
{% configuration %}
|
||||||
device:
|
device:
|
||||||
required: true
|
description: The AMS NetId that identifies the device.
|
||||||
description: The AMS NetId that identifies the device.
|
required: true
|
||||||
type: string
|
type: string
|
||||||
port:
|
port:
|
||||||
required: true
|
description: The port that runs the AMS server on the device, typically this would be 801 or 851.
|
||||||
description: The port that runs the AMS server on the device, typically this would be 801 or 851.
|
required: true
|
||||||
type: integer
|
type: integer
|
||||||
ip_address:
|
ip_address:
|
||||||
required: false
|
description: The IP address of the ADS device, if not set the first 4 bytes of the device id will be used.
|
||||||
description: The IP address of the ADS device, if not set the first 4 bytes of the device id will be used.
|
required: false
|
||||||
type: string
|
type: string
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
|
||||||
## {% linkable_title Service %}
|
## {% linkable_title Service %}
|
||||||
|
@ -14,6 +14,8 @@ ha_release: 0.11
|
|||||||
|
|
||||||
The `alarmdotcom` platform is consuming the information provided by [Alarm.com](https://www.alarm.com/).
|
The `alarmdotcom` platform is consuming the information provided by [Alarm.com](https://www.alarm.com/).
|
||||||
|
|
||||||
|
## {% linkable_title Configuration %}
|
||||||
|
|
||||||
To enable this, add the following lines to your `configuration.yaml`:
|
To enable this, add the following lines to your `configuration.yaml`:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
@ -41,5 +43,5 @@ name:
|
|||||||
code:
|
code:
|
||||||
description: Specifies a code to enable or disable the alarm in the frontend.
|
description: Specifies a code to enable or disable the alarm in the frontend.
|
||||||
required: false
|
required: false
|
||||||
type: int
|
type: integer
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
@ -15,6 +15,8 @@ ha_iot_class: "Cloud Polling"
|
|||||||
|
|
||||||
The `arlo` alarm control panel allows you to control your [Arlo](https://arlo.netgear.com/) base stations. You can use it to switch modes and trigger alarms from Home Assistant.
|
The `arlo` alarm control panel allows you to control your [Arlo](https://arlo.netgear.com/) base stations. You can use it to switch modes and trigger alarms from Home Assistant.
|
||||||
|
|
||||||
|
## {% linkable_title Configuration %}
|
||||||
|
|
||||||
To get your [Arlo](https://arlo.netgear.com/) base stations working within Home Assistant, please follow the instructions for the general [Arlo component](/components/arlo).
|
To get your [Arlo](https://arlo.netgear.com/) base stations working within Home Assistant, please follow the instructions for the general [Arlo component](/components/arlo).
|
||||||
|
|
||||||
Once you have enabled the [Arlo component](/components/arlo), add the following to your `configuration.yaml` file:
|
Once you have enabled the [Arlo component](/components/arlo), add the following to your `configuration.yaml` file:
|
||||||
|
@ -14,7 +14,12 @@ ha_release: 0.31
|
|||||||
|
|
||||||
The `concord232` platform provides integration with GE, Interlogix (and other brands) alarm panels that support the RS-232 Automation Control Panel interface module (or have it built in). Supported panels include Concord 4.
|
The `concord232` platform provides integration with GE, Interlogix (and other brands) alarm panels that support the RS-232 Automation Control Panel interface module (or have it built in). Supported panels include Concord 4.
|
||||||
|
|
||||||
To use this platform, you will need to have the external concord232 client and server installed. The server must be running on the device which is connected to the automation module's serial port. The client must be installed on the machine running Home Assistant. These may often be the same machine, but do not have to be. For additional details in setting up and testing the client and server, see <https://github.com/JasonCarter80/concord232>
|
To use this platform, you will need to have the external concord232 client and server installed.
|
||||||
|
The server must be running on the device which is connected to the automation module's serial port.
|
||||||
|
The client must be installed on the machine running Home Assistant. These may often be the same machine, but do not have to be.
|
||||||
|
For additional details in setting up and testing the client and server, see <https://github.com/JasonCarter80/concord232>.
|
||||||
|
|
||||||
|
## {% linkable_title Configuration %}
|
||||||
|
|
||||||
To enable this platform in Home Assistant, add the following lines to your `configuration.yaml`:
|
To enable this platform in Home Assistant, add the following lines to your `configuration.yaml`:
|
||||||
|
|
||||||
@ -28,11 +33,11 @@ alarm_control_panel:
|
|||||||
host:
|
host:
|
||||||
description: The host where the concord232 server process is running.
|
description: The host where the concord232 server process is running.
|
||||||
required: false
|
required: false
|
||||||
default: localhost
|
|
||||||
type: string
|
type: string
|
||||||
|
default: localhost
|
||||||
port:
|
port:
|
||||||
description: The port where the Alarm panel is listening.
|
description: The port where the Alarm panel is listening.
|
||||||
required: false
|
required: false
|
||||||
default: 5007
|
|
||||||
type: integer
|
type: integer
|
||||||
|
default: 5007
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
@ -13,8 +13,6 @@ ha_release: 0.23
|
|||||||
ha_iot_class: "Local Push"
|
ha_iot_class: "Local Push"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
The `envisalink` alarm control panel platform allows you to control your [Envisalink](http://www.eyezon.com) alarms.
|
The `envisalink` alarm control panel platform allows you to control your [Envisalink](http://www.eyezon.com) alarms.
|
||||||
|
|
||||||
The requirement is that you have setup your [Envisalink hub](/components/envisalink/).
|
The requirement is that you have setup your [Envisalink hub](/components/envisalink/).
|
||||||
|
|
||||||
|
@ -16,6 +16,8 @@ The `ialarm` platform provides connectivity with the [Antifurto365](https://www.
|
|||||||
|
|
||||||
This platform supports the following services: `alarm_arm_away`, `alarm_arm_home` and `alarm_disarm`.
|
This platform supports the following services: `alarm_arm_away`, `alarm_arm_home` and `alarm_disarm`.
|
||||||
|
|
||||||
|
## {% linkable_title Configuration %}
|
||||||
|
|
||||||
To enable this, add the following lines to your `configuration.yaml` file:
|
To enable this, add the following lines to your `configuration.yaml` file:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
@ -28,22 +30,22 @@ alarm_control_panel:
|
|||||||
```
|
```
|
||||||
|
|
||||||
{% configuration %}
|
{% configuration %}
|
||||||
host:
|
host:
|
||||||
description: The IP address of the iAlarm device on your home network.
|
description: The IP address of the iAlarm device on your home network.
|
||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
username:
|
username:
|
||||||
description: Username used to sign into the iAlarm web client (should be admin by default).
|
description: Username used to sign into the iAlarm web client (should be admin by default).
|
||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
password:
|
password:
|
||||||
description: Password used to sign into the iAlarm web client. If it has a leading zero you need to put the password within quotes.
|
description: Password used to sign into the iAlarm web client. If it has a leading zero you need to put the password within quotes.
|
||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
name:
|
name:
|
||||||
description: Name of device in Home Assistant.
|
description: Name of device in Home Assistant.
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
|
||||||
This platform has also been confirmed to work with the alarm system brands Meian and Emooluxr.
|
This platform has also been confirmed to work with the alarm system brands Meian and Emooluxr.
|
||||||
|
@ -9,11 +9,9 @@ sharing: true
|
|||||||
footer: true
|
footer: true
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
Home Assistant can give you an interface with is similar to a classic alarm system. There are several panels supported:
|
Home Assistant can give you an interface with is similar to a classic alarm system. There are several panels supported:
|
||||||
|
|
||||||
- [Alarm.com](/components/alarm_control_panel.alarmdotcom/)
|
- [Alarm.com](/components/alarm_control_panel.alarmdotcom/)
|
||||||
- [Manual](/components/alarm_control_panel.manual/)
|
- [Manual](/components/alarm_control_panel.manual/)
|
||||||
- [MQTT](/components/alarm_control_panel.mqtt/)
|
- [MQTT](/components/alarm_control_panel.mqtt/)
|
||||||
- [Verisure](/components/verisure/)
|
- [Verisure](/components/verisure/)
|
||||||
|
|
||||||
|
@ -25,6 +25,8 @@ The component will accept the following states from your Alarm Panel (in lower c
|
|||||||
|
|
||||||
The component can control your Alarm Panel by publishing to the `command_topic` when a user interacts with the Home Assistant frontend.
|
The component can control your Alarm Panel by publishing to the `command_topic` when a user interacts with the Home Assistant frontend.
|
||||||
|
|
||||||
|
## {% linkable_title Configuration %}
|
||||||
|
|
||||||
To enable this platform, add the following lines to your `configuration.yaml`:
|
To enable this platform, add the following lines to your `configuration.yaml`:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
|
@ -14,6 +14,8 @@ ha_release: 0.13
|
|||||||
|
|
||||||
The `nx584` platform provides integration with GE, Caddx, Interlogix (and other brands) alarm panels that support the NX584 interface module (or have it built in). Supported panels include NX4/6/8/8E. Actual integration is done through [pynx584](http://github.com/kk7ds/pynx584) which is required for this to work.
|
The `nx584` platform provides integration with GE, Caddx, Interlogix (and other brands) alarm panels that support the NX584 interface module (or have it built in). Supported panels include NX4/6/8/8E. Actual integration is done through [pynx584](http://github.com/kk7ds/pynx584) which is required for this to work.
|
||||||
|
|
||||||
|
## {% linkable_title Configuration %}
|
||||||
|
|
||||||
To enable this, add the following lines to your `configuration.yaml`:
|
To enable this, add the following lines to your `configuration.yaml`:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
@ -26,16 +28,16 @@ alarm_control_panel:
|
|||||||
host:
|
host:
|
||||||
description: The host where the nx584 server process is running.
|
description: The host where the nx584 server process is running.
|
||||||
required: false
|
required: false
|
||||||
default: localhost
|
|
||||||
type: string
|
type: string
|
||||||
|
default: localhost
|
||||||
name:
|
name:
|
||||||
description: This parameter allows you to override the name.
|
description: This parameter allows you to override the name.
|
||||||
required: false
|
required: false
|
||||||
default: NX584
|
|
||||||
type: string
|
type: string
|
||||||
|
default: NX584
|
||||||
port:
|
port:
|
||||||
description: The port where the Alarm panel is listening.
|
description: The port where the Alarm panel is listening.
|
||||||
required: false
|
required: false
|
||||||
default: 5007
|
|
||||||
type: integer
|
type: integer
|
||||||
|
default: 5007
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
@ -13,8 +13,6 @@ ha_release: 0.54
|
|||||||
ha_iot_class: "Local Push"
|
ha_iot_class: "Local Push"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
The `satel_integra` alarm control panel platform allows you to control your [SatelIntegra](http://www.satel.pl/en/) alarms.
|
The `satel_integra` alarm control panel platform allows you to control your [SatelIntegra](http://www.satel.pl/en/) alarms.
|
||||||
|
|
||||||
The requirement is that you have setup your [SatelIntegra hub](/components/satel_integra/).
|
The requirement is that you have setup your [SatelIntegra hub](/components/satel_integra/).
|
||||||
|
|
||||||
|
@ -14,6 +14,8 @@ ha_category: Alarm
|
|||||||
|
|
||||||
The `simplisafe` platform enables the ability to control a [SimpliSafe](http://simplisafe.com/) control panel.
|
The `simplisafe` platform enables the ability to control a [SimpliSafe](http://simplisafe.com/) control panel.
|
||||||
|
|
||||||
|
## {% linkable_title Configuration %}
|
||||||
|
|
||||||
To enable this, add the following lines to your `configuration.yaml`:
|
To enable this, add the following lines to your `configuration.yaml`:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
|
@ -13,7 +13,6 @@ ha_release: 0.47
|
|||||||
ha_iot_class: "Local Push"
|
ha_iot_class: "Local Push"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
The `spc` alarm control panel platform allows you to control your [Vanderbilt SPC](https://www.spcsupportinfo.com/) alarms.
|
The `spc` alarm control panel platform allows you to control your [Vanderbilt SPC](https://www.spcsupportinfo.com/) alarms.
|
||||||
|
|
||||||
The requirement is that you have setup your [SPC hub](/components/spc/).
|
The requirement is that you have setup your [SPC hub](/components/spc/).
|
||||||
|
@ -13,7 +13,6 @@ ha_release: 0.7.3
|
|||||||
ha_iot_class: "Cloud Polling"
|
ha_iot_class: "Cloud Polling"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
The Verisure alarm control panel platform allows you to control your [Verisure](https://www.verisure.com/) Alarms.
|
The Verisure alarm control panel platform allows you to control your [Verisure](https://www.verisure.com/) Alarms.
|
||||||
|
|
||||||
The requirement is that you have setup your [Verisure hub](/components/verisure/).
|
The requirement is that you have setup your [Verisure hub](/components/verisure/).
|
||||||
|
@ -14,18 +14,14 @@ ha_release: 0.37
|
|||||||
|
|
||||||
No Wink hub is required to support these devices.
|
No Wink hub is required to support these devices.
|
||||||
|
|
||||||
|
|
||||||
The Wink alarm platform allows you to control your [Wink](http://www.wink.com/) Canary all-in-one security camera.
|
The Wink alarm platform allows you to control your [Wink](http://www.wink.com/) Canary all-in-one security camera.
|
||||||
|
|
||||||
The requirement is that you have setup [Wink](/components/wink/).
|
The requirement is that you have setup [Wink](/components/wink/).
|
||||||
|
|
||||||
|
|
||||||
### {% linkable_title Supported devices %}
|
### {% linkable_title Supported devices %}
|
||||||
|
|
||||||
- Canary all-in-one security camera
|
- Canary all-in-one security camera
|
||||||
|
|
||||||
|
|
||||||
<p class='note'>
|
<p class='note'>
|
||||||
The above devices are confirmed to work, but others may work as well.
|
The above devices are confirmed to work, but others may work as well.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
@ -35,4 +35,3 @@ port:
|
|||||||
type: integer
|
type: integer
|
||||||
default: 3551
|
default: 3551
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
|
||||||
|
@ -19,6 +19,8 @@ The `apple_tv` platform allows you to control an Apple TV (3rd and 4th generatio
|
|||||||
Currently, you must have Home Sharing enabled for this to work. Support for pairing Home Assistant with your device will be supported in a later release.
|
Currently, you must have Home Sharing enabled for this to work. Support for pairing Home Assistant with your device will be supported in a later release.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
## {% linkable_title Configuration %}
|
||||||
|
|
||||||
To use this component, you must first install some system libraries and a compiler. For Debian or a similar system, this should be enough:
|
To use this component, you must first install some system libraries and a compiler. For Debian or a similar system, this should be enough:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
|
@ -14,12 +14,15 @@ ha_release: pre 0.7
|
|||||||
ha_iot_class: "Local Polling"
|
ha_iot_class: "Local Polling"
|
||||||
---
|
---
|
||||||
|
|
||||||
The [Arduino](https://www.arduino.cc/) device family are microcontroller boards that are often based on the ATmega328 chip. They come with digital input/output pins (some can be used as PWM outputs), analog inputs, and a USB connection. The equipment depends on the [type](https://www.arduino.cc/en/Main/Products) of the board. The most common ones are the Arduino Uno and the Arduino Leonardo with 14 digital input/output pins and 6 analog input pins.
|
The [Arduino](https://www.arduino.cc/) device family are microcontroller boards that are often based on the ATmega328 chip. They come with digital input/output pins (some can be used as PWM outputs), analog inputs, and a USB connection.
|
||||||
|
The equipment depends on the [type](https://www.arduino.cc/en/Main/Products) of the board. The most common ones are the Arduino Uno and the Arduino Leonardo with 14 digital input/output pins and 6 analog input pins.
|
||||||
|
|
||||||
There are a lot of extensions (so-called [shields](https://www.arduino.cc/en/Main/ArduinoShields)) available. Those shields can be plugged-in into the existing connectors and stacked on top of each other. This makes it possible to expand the capabilities of the Arduino boards.
|
There are a lot of extensions (so-called [shields](https://www.arduino.cc/en/Main/ArduinoShields)) available. Those shields can be plugged-in into the existing connectors and stacked on top of each other. This makes it possible to expand the capabilities of the Arduino boards.
|
||||||
|
|
||||||
The `arduino` component is designed to let you use a directly attached board to your Home Assistant host over USB.
|
The `arduino` component is designed to let you use a directly attached board to your Home Assistant host over USB.
|
||||||
|
|
||||||
|
## {% linkable_title Configuration %}
|
||||||
|
|
||||||
You need to have the [Firmata firmware](https://github.com/firmata/) on your board. Please upload the `StandardFirmata` sketch to your board; please refer to the [Arduino documentation](https://www.arduino.cc/en/Main/Howto) for further information.
|
You need to have the [Firmata firmware](https://github.com/firmata/) on your board. Please upload the `StandardFirmata` sketch to your board; please refer to the [Arduino documentation](https://www.arduino.cc/en/Main/Howto) for further information.
|
||||||
|
|
||||||
To integrate an Arduino boards with Home Assistant, add the following section to your `configuration.yaml` file:
|
To integrate an Arduino boards with Home Assistant, add the following section to your `configuration.yaml` file:
|
||||||
@ -54,4 +57,3 @@ Add the user who is used to run Home Assistant to the groups to allow access to
|
|||||||
```bash
|
```bash
|
||||||
$ sudo usermod -a -G dialout,lock $USER
|
$ sudo usermod -a -G dialout,lock $USER
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -13,4 +13,5 @@ ha_release: 0.73
|
|||||||
ha_qa_scale: internal
|
ha_qa_scale: internal
|
||||||
---
|
---
|
||||||
|
|
||||||
This component creates the endpoints for the [authentication system](/docs/authentication/) that is built into Home Assistant. There are no configuration options for this component directly as it relies on the auth system in the core.
|
This component creates the endpoints for the [authentication system](/docs/authentication/) that is built into Home Assistant.
|
||||||
|
There are no configuration options for this component directly as it relies on the auth system in the core.
|
||||||
|
@ -42,27 +42,26 @@ host:
|
|||||||
username:
|
username:
|
||||||
description: The username to your Axis device.
|
description: The username to your Axis device.
|
||||||
required: false
|
required: false
|
||||||
default: root
|
|
||||||
type: string
|
type: string
|
||||||
|
default: root
|
||||||
password:
|
password:
|
||||||
description: The password to your Axis device.
|
description: The password to your Axis device.
|
||||||
required: false
|
required: false
|
||||||
default: pass
|
|
||||||
type: string
|
type: string
|
||||||
|
default: pass
|
||||||
trigger_time:
|
trigger_time:
|
||||||
description: Minimum time (in seconds) a sensor should keep its positive value.
|
description: Minimum time (in seconds) a sensor should keep its positive value.
|
||||||
required: false
|
required: false
|
||||||
default: 0
|
|
||||||
type: integer
|
type: integer
|
||||||
|
default: 0
|
||||||
port:
|
port:
|
||||||
description: Configure port web server of device is accessible from.
|
description: Configure port web server of device is accessible from.
|
||||||
required: false
|
required: false
|
||||||
default: 80
|
|
||||||
type: integer
|
type: integer
|
||||||
|
default: 80
|
||||||
location:
|
location:
|
||||||
description: Physical location of your Axis device.
|
description: Physical location of your Axis device.
|
||||||
required: false
|
required: false
|
||||||
default: not set
|
|
||||||
type: string
|
type: string
|
||||||
include:
|
include:
|
||||||
description: This cannot be empty else there would be no use adding the device at all.
|
description: This cannot be empty else there would be no use adding the device at all.
|
||||||
|
@ -35,49 +35,49 @@ binary_sensor:
|
|||||||
{% endraw %}
|
{% endraw %}
|
||||||
|
|
||||||
{% configuration %}
|
{% configuration %}
|
||||||
sensors:
|
sensors:
|
||||||
description: List of your sensors.
|
description: List of your sensors.
|
||||||
required: true
|
required: true
|
||||||
type: map
|
type: map
|
||||||
keys:
|
keys:
|
||||||
sensor_name:
|
sensor_name:
|
||||||
description: The slug of the sensor.
|
description: The slug of the sensor.
|
||||||
required: true
|
required: true
|
||||||
type: map
|
type: map
|
||||||
keys:
|
keys:
|
||||||
friendly_name:
|
friendly_name:
|
||||||
description: Name to use in the frontend.
|
description: Name to use in the frontend.
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
entity_id:
|
entity_id:
|
||||||
description: A list of entity IDs so the sensor only reacts to state changes of these entities. This can be used if the automatic analysis fails to find all relevant entities.
|
description: A list of entity IDs so the sensor only reacts to state changes of these entities. This can be used if the automatic analysis fails to find all relevant entities.
|
||||||
required: false
|
required: false
|
||||||
type: string, list
|
type: string, list
|
||||||
device_class:
|
device_class:
|
||||||
description: The type/class of the sensor to set the icon in the frontend.
|
description: The type/class of the sensor to set the icon in the frontend.
|
||||||
required: false
|
required: false
|
||||||
type: device_class
|
type: device_class
|
||||||
default: None
|
default: None
|
||||||
value_template:
|
value_template:
|
||||||
description: Defines a template to set the state of the sensor.
|
description: Defines a template to set the state of the sensor.
|
||||||
required: true
|
required: true
|
||||||
type: template
|
type: template
|
||||||
icon_template:
|
icon_template:
|
||||||
description: Defines a template for the icon of the sensor.
|
description: Defines a template for the icon of the sensor.
|
||||||
required: false
|
required: false
|
||||||
type: template
|
type: template
|
||||||
entity_picture_template:
|
entity_picture_template:
|
||||||
description: Defines a template for the entity picture of the sensor.
|
description: Defines a template for the entity picture of the sensor.
|
||||||
required: false
|
required: false
|
||||||
type: template
|
type: template
|
||||||
delay_on:
|
delay_on:
|
||||||
description: The amount of time the template state must be ***met*** before this sensor will switch to `on`.
|
description: The amount of time the template state must be ***met*** before this sensor will switch to `on`.
|
||||||
required: false
|
required: false
|
||||||
type: time
|
type: time
|
||||||
delay_off:
|
delay_off:
|
||||||
description: The amount of time the template state must be ***not met*** before this sensor will switch to `off`.
|
description: The amount of time the template state must be ***not met*** before this sensor will switch to `off`.
|
||||||
required: false
|
required: false
|
||||||
type: time
|
type: time
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
|
||||||
## {% linkable_title Considerations %}
|
## {% linkable_title Considerations %}
|
||||||
|
@ -13,8 +13,6 @@ ha_release: 0.48
|
|||||||
ha_iot_class: "Local Polling"
|
ha_iot_class: "Local Polling"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
The `upnp` sensor platform allows one to get the network statistics from your router such as bytes in/out and packets in/out.
|
The `upnp` sensor platform allows one to get the network statistics from your router such as bytes in/out and packets in/out.
|
||||||
|
|
||||||
To use your UPNP sensor in your installation, you need to set up the [`upnp`](/components/upnp/) component.
|
To use your UPNP sensor in your installation, you need to set up the [`upnp`](/components/upnp/) component.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user