mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-25 10:17:23 +00:00
Fix variables and description
This commit is contained in:
parent
02dd9e59ea
commit
61fdbc940f
@ -13,8 +13,11 @@ ha_release: 0.37
|
|||||||
---
|
---
|
||||||
|
|
||||||
The `linksys_ap` platform offers presence detection by looking at connected devices to a Linksys based access point.
|
The `linksys_ap` platform offers presence detection by looking at connected devices to a Linksys based access point.
|
||||||
|
|
||||||
It was tested with a LAPAC1750 AC1750 Dual Band Access Point.
|
It was tested with a LAPAC1750 AC1750 Dual Band Access Point.
|
||||||
|
|
||||||
|
## {% linkable_title Configuration %}
|
||||||
|
|
||||||
To use a Linksys Access Point in your installation, add the following to your `configuration.yaml` file:
|
To use a Linksys Access Point in your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
@ -22,25 +25,28 @@ To use a Linksys Access Point in your installation, add the following to your `c
|
|||||||
device_tracker:
|
device_tracker:
|
||||||
- platform: linksys_ap
|
- platform: linksys_ap
|
||||||
host: 192.168.1.1
|
host: 192.168.1.1
|
||||||
username: admin
|
username: YOUR_USERNAME
|
||||||
password: password
|
password: YOUR_PASSWORD
|
||||||
```
|
```
|
||||||
|
|
||||||
Configuration variables:
|
Configuration variables:
|
||||||
|
|
||||||
- **host** (*Required*): The hostname or IP address of your access point, eg. `192.168.1.1`.
|
- **host** (*Required*): The hostname or IP address of your access point, eg. `192.168.1.1`.
|
||||||
- **username** (*Required*: The username of an user with administrative privileges (read-only is sufficient).
|
- **username** (*Required*): The username of an user with administrative privileges (read-only is sufficient).
|
||||||
- **password** (*Required*): The password for your given admin account.
|
- **password** (*Required*): The password for your given admin account.
|
||||||
- **verify_ssl** (*Optional*): Verify SSL certificate for https request. Defaults to true.
|
- **verify_ssl** (*Optional*): Verify SSL certificate for HTTPS request. Defaults to true.
|
||||||
|
|
||||||
|
## {% linkable_title Example %}
|
||||||
|
|
||||||
Example for all configuration options:
|
Example for all configuration options:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yaml entry
|
# Example configuration.yaml entry
|
||||||
device_tracker:
|
device_tracker:
|
||||||
- platform: linksys_ap
|
- platform: linksys_ap
|
||||||
host: 192.168.1.1
|
host: 192.168.1.1
|
||||||
username: admin
|
username: YOUR_USERNAME
|
||||||
password: password
|
password: YOUR_PASSWORD
|
||||||
verify_ssl: true
|
verify_ssl: true
|
||||||
scan_interval: 6
|
scan_interval: 6
|
||||||
consider_home: 12
|
consider_home: 12
|
||||||
|
Loading…
x
Reference in New Issue
Block a user