Add release notes May 14, 2015
This commit is contained in:
parent
4f30c621fc
commit
6c0d9b08fa
10 changed files with 182 additions and 5 deletions
|
@ -9,7 +9,7 @@ sharing: true
|
|||
footer: true
|
||||
---
|
||||
|
||||
<img src='/images/supported_brands/ddwrt.png' class='brand' />
|
||||
<img src='/images/supported_brands/ddwrt.png' class='brand pull-right' />
|
||||
This platform offers presence detection by looking at connected devices to a [DD-WRT](http://www.dd-wrt.com/site/index) based router.
|
||||
|
||||
```yaml
|
||||
|
|
|
@ -9,7 +9,7 @@ sharing: true
|
|||
footer: true
|
||||
---
|
||||
|
||||
<img src='/images/supported_brands/netgear.png' class='brand' />
|
||||
<img src='/images/supported_brands/netgear.png' class='brand pull-right' />
|
||||
This platform allows you to detect presence by looking at connected devices to a [Netgear](http://www.netgear.com/) device.
|
||||
|
||||
```yaml
|
||||
|
|
|
@ -58,6 +58,12 @@ Entities are things that you want to observe within Home Assistant. Support for
|
|||
<td>Control WeMo switches and read the usage statistics from Insight switches.</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><a href='/components/sensor.mysensors.html'><img src='/images/supported_brands/mysensors.png' class='brand overview' /></a></td>
|
||||
<td><a href='/components/sensor.mysensors.html'>MySensors switches</a></td>
|
||||
<td>Integrate MySensors sensors.</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><a href='/components/device_tracker.ddwrt.html'><img src='/images/supported_brands/ddwrt.png' class='brand overview' /></a></td>
|
||||
<td><a href='/components/device_tracker.ddwrt.html'>DD-WRT routers</a></td>
|
||||
|
@ -224,7 +230,7 @@ the manufacturers of these devices.
|
|||
|
||||
<tr>
|
||||
<td></td>
|
||||
<td><a href='/components/time_date.html'>Time & Date</a></td>
|
||||
<td><a href='/components/sensor.time_date.html'>Time & Date</a></td>
|
||||
<td>Displays the time and the date.</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
|
@ -22,3 +22,32 @@ Each schedule is a JSON with the keys `id`, `name`, `description`, `entity_ids`,
|
|||
effect (can also be groups)
|
||||
- events is an array of objects that describe the different events that is
|
||||
supported. Read in the events descriptions for more information
|
||||
|
||||
Example `schedule.json`
|
||||
|
||||
```json
|
||||
[
|
||||
{
|
||||
"id": "window_lamps",
|
||||
"name": "Window lamps",
|
||||
"description": "Turn on window lamps on sunset and turn off at 22:30",
|
||||
"days": [0, 1, 2, 3, 4],
|
||||
"entity_ids": [
|
||||
"group.window_lamps"
|
||||
],
|
||||
"events": [
|
||||
{
|
||||
"type": "time",
|
||||
"service": "switch.turn_off",
|
||||
"time": "22:30:00"
|
||||
},
|
||||
{
|
||||
"type": "sun",
|
||||
"service": "switch.turn_on",
|
||||
"event": "sunset",
|
||||
"offset": "-00:45:00"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
```
|
||||
|
|
20
source/components/sensor.mysensors.markdown
Normal file
20
source/components/sensor.mysensors.markdown
Normal file
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
layout: page
|
||||
title: "MySensors support"
|
||||
description: "Instructions how to integrate MySensors into Home Assistant."
|
||||
date: 2015-05-14 21:57
|
||||
sidebar: false
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
---
|
||||
|
||||
<img src='/images/supported_brands/mysensors.png' class='brand pull-right' />
|
||||
Integrate your [MySensors sensors](https://www.mysensors.org) by adding the following to your `configuration.yaml`:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
sensor:
|
||||
platform: mysensors
|
||||
port: /dev/ttyACM0
|
||||
```
|
|
@ -9,6 +9,7 @@ sharing: true
|
|||
footer: true
|
||||
---
|
||||
|
||||
<img src='/images/supported_brands/wink.png' class='brand pull-right' />
|
||||
Wink is a home automation hub that can control a whole wide range of devices on the market. Or, as they say in their own words:
|
||||
|
||||
<blockquote>Wink offers one, quick and simple way to connect people with the products they rely on every day in their home.</blockquote>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue