Skip to content

Commit d93979e

Browse files
bachyaMartinHjelmare
authored andcommitted
Adds docs for Tile (home-assistant#3938)
* Adds docs for Tile * Collaborator-requested changes
1 parent c974f51 commit d93979e

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
layout: page
3+
title: "Tile"
4+
description: "Instructions how to use Tile to track devices in Home Assistant."
5+
date: 2017-11-08 20:40:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: tile.png
11+
ha_release: 0.58
12+
ha_category: Presence Detection
13+
ha_iot_class: "Cloud Polling"
14+
---
15+
16+
The `tile` platform allows Home Assistant to utilize [Tile® Bluetooth trackers](https://www.thetileapp.com).
17+
The official Tile mobile app handles the actual tracking of Tile devices using
18+
the mobile device's Bluetooh and GPS.
19+
20+
To integrate Tile into Home Assistant, add the following section to your
21+
`configuration.yaml` file:
22+
23+
```yaml
24+
device_tracker:
25+
- platform: tile
26+
username: email@address.com
27+
password: MY_PASSWORD_123
28+
monitored_variables:
29+
- TILE
30+
- PHONE
31+
```
32+
33+
{% configuration %}
34+
username:
35+
description: the email address for the Tile account
36+
required: true
37+
type: string
38+
password:
39+
description: the password for the Tile account
40+
required: true
41+
type: string
42+
monitored_variables:
43+
description: the Tile types to monitor; valid values are `TILE` and `PHONE` (default is for all types to be included)
44+
required: false
45+
type: list
46+
{% endconfiguration %}
3.12 KB
Loading

0 commit comments

Comments
 (0)