Skip to content

Commit

Permalink
Docs for Tile
Browse files Browse the repository at this point in the history
  • Loading branch information
brianjking committed Dec 12, 2018
1 parent 3f29f3e commit b545816
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions docs/tile-tracker-alternate.md
Original file line number Diff line number Diff line change
@@ -1 +1,60 @@
# Tile Tracker

[Tile Tracker Alternate](https://github.com/brianjking/homeassistant-config/blob/master/images/tile-tracker-alternate.png "Tile Tracker Alternate")

* https://community.home-assistant.io/t/bluetooth-presence-detection-without-raspberry-pi-3/35558/4?u=brianjking

* https://github.com/brianjking/homeassistant-config/issues/163

### How to obtain Tile Trackers MAC Addresses

`sudo stdbuf -oL hcitool lescan | grep Tile`

https://github.com/brianjking/homeassistant-config/blob/master/sensor/rest.yaml

```yaml
- platform: rest
name: KinnaTile
resource: http://0.0.0.0:5000/api/search/c8:31:53:38:c9:f1

- platform: rest
name: BrianBagTile
resource: http://0.0.0.0:5000/api/search/d5:a8:5b:68:b3:92

- platform: rest
name: BrianKeysTile
resource: http://0.0.0.0:5000/api/search/d3:a5:72:80:83:6a

- platform: rest
name: SpareKeysTile
resource: http://0.0.0.0:5000/api/search/d7:57:d9:9d:8c:b4

```

https://github.com/brianjking/homeassistant-config/blob/master/binary_sensor/tile-template.yaml

```yaml
- platform: template
sensors:
kinna_tile_boolean:
friendly_name: "Kinna"
value_template: "{{ states.sensor.kinnatile.state == 'true' }}"

- platform: template
sensors:
brian_keys_tile_boolean:
friendly_name: "Brian"
value_template: "{{ states.sensor.briankeystile.state == 'true' }}"

- platform: template
sensors:
brian_bag_tile_boolean:
friendly_name: "Brian Bag Tile"
value_template: "{{ states.sensor.brianbagtile.state == 'true' }}"

- platform: template
sensors:
spare_keys_tile_boolean:
friendly_name: "Spare Keys Tile"
value_template: "{{ states.sensor.sparekeystile.state == 'true' }}"
```
Binary file added images/tile-alternate-tracker.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b545816

Please sign in to comment.