Unifi device tracking SSID Filtering (#4622)

* Unifi device tracking SSID Filtering

Add documentation for configuration of unifi SSID filtering.

* Update device_tracker.unifi.markdown
This commit is contained in:
Mike O'Driscoll 2018-02-21 09:29:53 -05:00 committed by c727
parent 12221b5bbf
commit eb459f50b5

View File

@ -20,8 +20,12 @@ To use this device tracker in your installation, add the following to your `conf
# Example configuration.yaml entry # Example configuration.yaml entry
device_tracker: device_tracker:
- platform: unifi - platform: unifi
username: USERNAME host: unifi
password: PASSWORD username: username
password: password
ssid_filter:
- 'HomeSSID'
- 'IoTSSID'
``` ```
{% configuration %} {% configuration %}
@ -56,8 +60,14 @@ verify_ssl:
detection_time: detection_time:
description: How long since the last seen time before the device is marked away, specified in seconds. description: How long since the last seen time before the device is marked away, specified in seconds.
type: int type: int
required: optional required: false
default: 300 default: 300
ssid_filter:
description: Filter the SSIDs that tracking will occur on.
type: list of strings
required: false
default: None
{% endconfiguration %} {% endconfiguration %}
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.