forked from home-assistant/home-assistant.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
94 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,5 @@ body > footer { | |
.copyright { | ||
margin: 0; | ||
padding: 20px 0; | ||
} | ||
text-align: center; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
layout: page | ||
title: "Setting up TellStick" | ||
description: "Instructions how to integrate your TellStick into Home Assistant." | ||
date: 2015-03-28 13:06 | ||
sidebar: false | ||
comments: false | ||
sharing: true | ||
footer: true | ||
--- | ||
|
||
The TellStick Home Assistant integration allows users to add switches and sensors. | ||
|
||
To get started, add the following information to your `configuration.yaml`: | ||
|
||
```YAML | ||
switch: | ||
platform: tellstick | ||
|
||
sensor: | ||
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. | ||
light: | ||
platform: tellstick | ||
|
||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
--- | ||
layout: page | ||
title: "Configuring Home Assistant" | ||
description: "Configuring Home Assistant." | ||
date: 2015-03-23 12:50 | ||
sidebar: false | ||
comments: false | ||
sharing: true | ||
footer: true | ||
--- | ||
|
||
The configuration for Home Assistant lives by default in the `config` folder. The file `configuration.yaml` is the main file that contains which components will be loaded and what their configuration is. An example configuration file is located at [`config/configuration.yaml.example`](https://github.com/balloob/home-assistant/blob/master/config/configuration.yaml.example). | ||
|
||
When launched for the first time, Home Assistant will write a default configuration enabling the web interface and device discovery. It can take up to a minute for your devices to be discovered and show up in the interface. | ||
|
||
<p class='note'> | ||
You will have to restart Home Assistant for changes in <code>configuration.yaml</code> to take effect. | ||
</p> | ||
|
||
### Password protecting the web interface | ||
|
||
The first thing you want to add is a password for the web interface. Use your favourite text editor to open the file `/config/configuration.yaml` and add the following to the bottom: | ||
|
||
``` | ||
http: | ||
api_password: YOUR_PASSWORD | ||
``` | ||
|
||
### {% linkable_title Adding devices and services %} | ||
|
||
Home Assistant will be able to automatically discover and configure any Google Chromecasts, Belkin WeMo switches and Philips Hue bridges in your network if you have [the discovery component]({{site_root}}/components/discovery.html) enabled (which is by default). | ||
|
||
Not all devices can be discovered, so if you have any of the following devices or services, please see their respective pages for installation instructions: | ||
|
||
* [Nest thermostat]({{site_root}}/components/thermostat.html) | ||
* [Wink hub]({{site_root}}/components/wink.html) | ||
* [TellStick](/components/tellstick.html) | ||
* [PushBullet]({{site_root}}/components/notify.html) | ||
* [PushOver](/blog/2015/03/22/release-notes/#pushover) | ||
* [SABnzbd](/blog/2015/03/22/release-notes/#sabnzbd) | ||
* [Device tracking]({{site_root}}/components/device_tracker.html) | ||
* [Add support for your own device or service]({{site_root}}/developers/add_new_platform.html) | ||
|
||
### {% linkable_title Setting up Home Automation %} | ||
|
||
When all your devices are set up it's time to put the cherry on the pie: automation. There are many ways to automate your home with Home Assistant so we have divided it into a couple of topics: | ||
|
||
* [Automatic light control based on the sun and if people are home]({{site_root}}/components/device_sun_light_trigger.html) (built-in component) | ||
* [Intruder alerts]({{site_root}}/components/simple_alarm.html) (built-in component) | ||
* [Setup your own automation rules]({{site_root}}/components/automation.html) (using configuration file) | ||
* [Create your own automation component]({{site_root}}/developers/creating_components.html) (writing Python code) | ||
|
||
### {% linkable_title Setting up your phone or tablet %} | ||
|
||
Home Assistant runs as a self hosted web application. Home Assistant contains support to be added to your homescreen. If you're on Android you can follow [the visual guide]({{site_root}}/getting-started/android.html). For other devices, open Home Assistant on your mobile browser and click on the add to homescreen option. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters