home-assistant.io/source/_components/linksys_ap.markdown
Franck Nijhof ebca3218c7
🔥Removes linkable_title everywhere (#9772)
* Automatically create linkable headers

* Visually improve position of linkable header chain icon

* Do not auto link  headers on homepage

* Remove linkable_title everywhere

* 🚑 Re-instante linkable_title plugin as NOOP
2019-07-04 19:08:27 +02:00

1.7 KiB

layout, title, description, date, sidebar, comments, sharing, footer, ha_category, logo, ha_release, redirect_from
layout title description date sidebar comments sharing footer ha_category logo ha_release redirect_from
page Linksys Access Points Instructions on how to integrate Linksys Access Points into Home Assistant. 2016-12-16 01:40 true false true true
Presence Detection
linksys.png 0.37
/components/device_tracker.linksys_ap/

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.

Configuration

To use a Linksys Access Point in your installation, add the following to your configuration.yaml file:

# Example configuration.yaml entry
device_tracker:
  - platform: linksys_ap
    host: 192.168.1.1
    username: YOUR_USERNAME
    password: YOUR_PASSWORD

{% configuration %} host: description: The hostname or IP address of your access point, e.g., 192.168.1.1. required: true type: string username: description: The username of an user with administrative privileges (read-only is sufficient). required: true type: string password: description: The password for your given admin account. required: true type: string verify_ssl: description: Verify SSL certificate for HTTPS request. required: false default: true type: boolean {% endconfiguration %}

Example

Example for all configuration options:

# Example configuration.yaml entry
device_tracker:
  - platform: linksys_ap
    host: 192.168.1.1
    username: YOUR_USERNAME
    password: YOUR_PASSWORD
    verify_ssl: true
    scan_interval: 6
    consider_home: 12

See the device tracker integration page for instructions how to configure the people to be tracked.