From eb459f50b51c381d55925b1682552d58d33b477b Mon Sep 17 00:00:00 2001 From: Mike O'Driscoll Date: Wed, 21 Feb 2018 09:29:53 -0500 Subject: [PATCH] Unifi device tracking SSID Filtering (#4622) * Unifi device tracking SSID Filtering Add documentation for configuration of unifi SSID filtering. * Update device_tracker.unifi.markdown --- source/_components/device_tracker.unifi.markdown | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/source/_components/device_tracker.unifi.markdown b/source/_components/device_tracker.unifi.markdown index a71db056556..bac8fe43be4 100644 --- a/source/_components/device_tracker.unifi.markdown +++ b/source/_components/device_tracker.unifi.markdown @@ -20,8 +20,12 @@ To use this device tracker in your installation, add the following to your `conf # Example configuration.yaml entry device_tracker: - platform: unifi - username: USERNAME - password: PASSWORD + host: unifi + username: username + password: password + ssid_filter: + - 'HomeSSID' + - 'IoTSSID' ``` {% configuration %} @@ -56,8 +60,14 @@ verify_ssl: detection_time: description: How long since the last seen time before the device is marked away, specified in seconds. type: int - required: optional + required: false default: 300 +ssid_filter: + description: Filter the SSIDs that tracking will occur on. + type: list of strings + required: false + default: None + {% endconfiguration %} See the [device tracker component page](/components/device_tracker/) for instructions how to configure the people to be tracked.