Franck Nijhof 1833c32a2c Cleans up front matter (#9835)
* Sets front matter defaults

* Removes default front matter from section templates/pages

* Removes default front matter from addon pages

* Removes default front matter from integration pages

* Removes default front matter from posts

* Removes default front matter from docs pages

* Removes default front matter from other pages

* Fixes blog category pages
2019-07-11 14:35:08 -07:00

51 lines
1.4 KiB
Markdown

---
title: "Tikteck"
description: "Instructions on how to setup Tikteck LED bulbs within Home Assistant."
ha_category:
- Light
ha_iot_class: Local Polling
logo: tikteck.png
ha_release: 0.36
redirect_from:
- /components/light.tikteck/
---
Support for the Bluetooth smart bulb from [Tikteck](http://www.tikteck.com). To enable these lights, add the following lines to your `configuration.yaml` file:
```yaml
# Example configuration.yaml entry
light:
- platform: tikteck
devices:
00:21:4D:00:00:01:
name: Bulb 1
password: 76409387
00:21:4D:00:00:01:
name: Bulb 2
password: 36478643
```
{% configuration %}
devices:
description: A list of devices with their bluetooth address.
required: false
type: list
keys:
name:
description: A custom name to use in the frontend.
required: false
type: string
password:
description: The bulb-specific password.
required: true
type: string
{% endconfiguration %}
The password can be obtained from an Android device using an app like [aLogcat](https://play.google.com/store/apps/details?id=org.jtb.alogcat&hl=en) or the `adb logcat` command for phones in developer mode. Look for a line like:
```
E LedoBleSDK: login =skName=======[Smart Light]=======skPw==[password]
```
The password is the text between the square brackets following `skPw`.