Add list of supported tellstick devices

This commit is contained in:
Fabian Affolter 2015-10-21 16:39:49 +02:00
parent 3169fa9a36
commit 9a6c180440

View File

@ -1,6 +1,6 @@
--- ---
layout: page layout: page
title: "Setting up TellStick" title: "TellStick component"
description: "Instructions how to integrate your TellStick into Home Assistant." description: "Instructions how to integrate your TellStick into Home Assistant."
date: 2015-03-28 13:06 date: 2015-03-28 13:06
sidebar: false sidebar: false
@ -10,9 +10,10 @@ footer: true
--- ---
<img src='/images/supported_brands/telldus_tellstick.png' class='brand pull-right' /> <img src='/images/supported_brands/telldus_tellstick.png' class='brand pull-right' />
The TellStick Home Assistant integration allows users to add switches and sensors. The tellstick component integrates [TellStick](http://www.telldus.se/products/tellstick) devices into Home Assistant. This integration allows users to add switches, lights, and sensors which are communicating with 433 Mhz. There are couple of vendors (Capidi
Elro, Intertechno, Nexa, Proove, Sartano, and Viking) how are selling products which works with TellStick. For more details, please check the TellStick [compatibility list](http://telldus.se/products/compability).
To get started, add the following information to your `configuration.yaml`: To get started, add the devices to your `configuration.yaml` file.
```yaml ```yaml
# Example configuration.yaml entry # Example configuration.yaml entry
@ -22,17 +23,14 @@ switch:
sensor: sensor:
platform: tellstick platform: tellstick
# optionally, you can name your sensors by mapping ID to their name
2: Outside
5: Fridge
# Set only_named to 1 to hide all sensors that you did not mention.
only_named: 1
# All dimmers will be picked up as lights. # All dimmers will be picked up as lights.
light: light:
platform: tellstick platform: tellstick
``` ```
## {% linkable_title Building on top of TellStick %}
- [TellStick Sensor](/components/sensor.tellstick.html)
- [TellStick Switch](/components/switch.tellstick.html)
- [TellStick Light](/components/light.tellstick.html)