Add ha_release

This commit is contained in:
Fabian Affolter 2016-05-21 12:10:23 +02:00
parent 03ca0b369e
commit 42b1cd30ba
2 changed files with 12 additions and 6 deletions

View File

@ -15,10 +15,6 @@ ha_release: pre 0.7
The `asuswrt` platform offers presence detection by looking at connected devices to a [ASUSWRT](http://event.asus.com/2013/nw/ASUSWRT/) based router. The `asuswrt` platform offers presence detection by looking at connected devices to a [ASUSWRT](http://event.asus.com/2013/nw/ASUSWRT/) based router.
<p class='note warning'>
This device tracker needs telnet to be enabled on the router.
</p>
To use an ASUSWRT router in your installation, add the following to your `configuration.yaml` file: To use an ASUSWRT router in your installation, add the following to your `configuration.yaml` file:
```yaml ```yaml
@ -26,14 +22,20 @@ To use an ASUSWRT router in your installation, add the following to your `config
device_tracker: device_tracker:
platform: asuswrt platform: asuswrt
host: YOUR_ROUTER_IP host: YOUR_ROUTER_IP
protocol: telnet
username: YOUR_ADMIN_USERNAME username: YOUR_ADMIN_USERNAME
password: YOUR_ADMIN_PASSWORD password: YOUR_ADMIN_PASSWORD
``` ```
Configuration variables: Configuration variables:
- **host** (*Required*): The IP address of your router, e.g. 192.168.1.1. - **host** (*Required*): The IP address of your router, eg. 192.168.1.1.
- **protocol** (*Optional*): The protocol (`ssh` or `telnet`) to use. Defaults to `ssh`.
- **username** (*Required*: The username of an user with administrative privileges, usually *admin*. - **username** (*Required*: The username of an user with administrative privileges, usually *admin*.
- **password** (*Required*): The password for your given admin account. - **password** (*Required*): The password for your given admin account.
<p class='note warning'>
You need to enable telnet on your router if you choose to use `protocol: telnet`.
</p>
See the [device tracker component page](/components/device_tracker/) for instructions how to configure the people to be tracked. See the [device tracker component page](/components/device_tracker/) for instructions how to configure the people to be tracked.

View File

@ -9,6 +9,7 @@ sharing: true
footer: true footer: true
logo: nest_thermostat.png logo: nest_thermostat.png
ha_category: Sensor ha_category: Sensor
ha_release: pre 0.7
--- ---
@ -59,4 +60,7 @@ Configuration variables:
- 'wind_direction' - 'wind_direction'
- 'co_status' # Nest Protect only - 'co_status' # Nest Protect only
- 'smoke_status' # Nest Protect only - 'smoke_status' # Nest Protect only
<p class='note'>You must have the [Nest component](/components/nest/) configured to use this sensor.</p>
<p class='note'>
You must have the [Nest component](/components/nest/) configured to use this sensor.
</p>