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 Hitron CODA Routers into Home Assistant."
5
+
date: 2017-10-03 15:40
6
+
sidebar: true
7
+
comments: false
8
+
sharing: true
9
+
footer: true
10
+
logo: hitron.png
11
+
ha_category: Presence Detection
12
+
ha_release: 0.58
13
+
---
14
+
15
+
This component offers presence detection by examining devices connected to a [Rogers Hitron CODA](https://www.rogers.com/customer/support/article/wi-fi-password-hitron-coda4582-cgn3amr-cgnm3552-cgn3acr-cgn3)
16
+
Router.
17
+
18
+
To use a Hitron router in your installation, add the following to your `configuration.yaml` file:
19
+
20
+
```yaml
21
+
# Example configuration.yaml entry
22
+
device_tracker:
23
+
- platform: hitron_coda
24
+
host: !secret router_ip
25
+
username: !secret router_username
26
+
password: !secret router_password
27
+
```
28
+
29
+
{% configuration %}
30
+
host:
31
+
description: The IP address of your router, e.g., `192.168.0.1`.
32
+
required: true
33
+
type: string
34
+
username:
35
+
description: The username to login into the router (user should have read access to the web interface of the router). Usually "cusadmin".
36
+
required: true
37
+
type: string
38
+
password:
39
+
description: The password for the specified username. Usually your WiFi password.
40
+
required: true
41
+
type: string
42
+
{% endconfiguration %}
43
+
44
+
See the [device tracker component page](/components/device_tracker/) for instructions how to configure the people to be tracked.
0 commit comments