You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Instructions on how to integrate Cisco Mobility Express wireless controllers into Home Assistant."
5
+
date: 2019-02-27 11:59
6
+
sidebar: true
7
+
comments: false
8
+
sharing: true
9
+
footer: true
10
+
logo: cisco.png
11
+
ha_category: Presence Detection
12
+
ha_release: "0.90"
13
+
---
14
+
15
+
This is a presence detection scanner for [Cisco](https://www.cisco.com) Mobility Express wireless controllers.
16
+
17
+
To use this device tracker in your installation, add the following to your `configuration.yaml` file:
18
+
19
+
```yaml
20
+
# Example configuration.yaml entry
21
+
device_tracker:
22
+
- platform: cisco_mobility_express
23
+
host: CONTROLLER_IP_ADDRESS
24
+
username: YOUR_ADMIN_USERNAME
25
+
password: YOUR_ADMIN_PASSWORD
26
+
```
27
+
28
+
{% configuration %}
29
+
host:
30
+
description: The IP address of your controller, e.g., 192.168.10.150.
31
+
required: true
32
+
type: string
33
+
username:
34
+
description: The username of a user with administrative privileges.
35
+
required: true
36
+
type: string
37
+
password:
38
+
description: The password for your given admin account.
39
+
required: true
40
+
type: string
41
+
ssl:
42
+
description: Use HTTPS instead of HTTP to connect.
43
+
required: false
44
+
type: boolean
45
+
default: false
46
+
verify_ssl:
47
+
description: Enable or disable SSL certificate verification. Set to false if you have a self-signed SSL certificate and haven't installed the CA certificate to enable verification.
48
+
required: false
49
+
default: true
50
+
type: boolean
51
+
{% endconfiguration %}
52
+
53
+
See the [device tracker component page](/components/device_tracker/) for instructions how to configure the people to be tracked.
0 commit comments