Release notes 2015-06-10

This commit is contained in:
Paulus Schoutsen 2015-06-13 10:04:59 -07:00
parent be163d98fc
commit edabc798ff
10 changed files with 270 additions and 1 deletions

View file

@ -115,6 +115,24 @@ Entities are things that you want to observe within Home Assistant. Support for
<td>Track what is being played and control playback.</td>
</tr>
<tr>
<td></td>
<td><a href='/components/switch.command_switch.html'>Command line Switch</a></td>
<td>Switch that issues command line commands when turned on and off.</td>
</tr>
<tr>
<td></td>
<td><a href='/components/light.limitlessled.html'>LimitlessLED</a></td>
<td>Control your LimitlessLED lights.</td>
</tr>
<tr>
<td></td>
<td><a href='/components/switch.hikvision.html'>Hikvision</a></td>
<td>Control the motion detection setting on your Hikvision camera.</td>
</tr>
<tr>
<td><a href='/components/isy994.html'><img src='/images/supported_brands/insteon.png' class='brand overview' /></a></td>
<td><a href='/components/isy994.html'>Insteon Devices</a></td>

View file

@ -0,0 +1,23 @@
---
layout: page
title: "LimitlessLED support"
description: "Instructions how to setup LimitlessLED within Home Assistant."
date: 2015-06-10 22:48
sidebar: false
comments: false
sharing: true
footer: true
---
This new platform can control your LimitlessLED lights from within Home Assistant. The lights are also known as EasyBulb, AppLight, AppLamp, MiLight, LEDme, dekolight or iLight.
```
# Example configuration.yaml entry
light:
platform: limitlessled
host: 192.168.1.10
group_1_name: Living Room
group_2_name: Bedroom
group_3_name: Office
group_4_name: Kitchen
```

View file

@ -0,0 +1,22 @@
---
layout: page
title: "Command line switches support"
description: "Instructions how to have a switch call command line commands."
date: 2015-06-10 22:41
sidebar: false
comments: false
sharing: true
footer: true
---
A switch platform that issues specific commands when it is turned on and off. This might very well become our most platform as it allows anyone to integrate any type of switch into Home Assistant that can be controlled from the command line, including calling other scripts!
```
# Example configuration.yaml entry
switch:
platform: command_switch
switches:
- kitchen_light:
oncmd: switch_command on kitchen
offcmd: switch_command off kitchen
```

View file

@ -0,0 +1,22 @@
---
layout: page
title: "Hikvision camera support"
description: "Instructions how to integrate Hikvision camera's into Home Assistant."
date: 2015-06-10 22:54
sidebar: false
comments: false
sharing: true
footer: true
---
This switch platform allows you to control your motion detection setting on your Hikvision camera.
```
# Example configuration.yaml entry
switch:
platform: hikvisioncam
name: Hikvision Cam 1 Motion Detection
host: 192.168.1.26
username: YOUR_USERNAME
password: YOUR_PASSWORD
```