mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-31 07:16:47 +00:00
42 lines
991 B
Markdown
42 lines
991 B
Markdown
---
|
|
layout: page
|
|
title: "TrackR"
|
|
description: "Instructions on how to use TrackR to track devices in Home Assistant."
|
|
date: 2016-12-22 1000
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
logo: trackr.png
|
|
ha_release: 0.36
|
|
ha_category: Presence Detection
|
|
ha_iot_class: "Cloud Polling"
|
|
---
|
|
|
|
|
|
The `trackr` platform allows you to detect presence using [TrackR](https://www.thetrackr.com/) devices.
|
|
|
|
The official TrackR mobile app handles the tracking of the TrackR devices using your phones Bluetooth and GPS.
|
|
|
|
To integrate TrackR in Home Assistant, add the following section to your `configuration.yaml` file:
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
device_tracker:
|
|
platform: trackr
|
|
username: YOUR_USERNAME
|
|
password: YOUR_PASSWORD
|
|
```
|
|
|
|
{% configuration %}
|
|
username:
|
|
description: The email address for the TrackR account.
|
|
required: true
|
|
type: string
|
|
password:
|
|
description: The password for your given username.
|
|
required: true
|
|
type: string
|
|
{% endconfiguration %}
|
|
|