Release 0.17

This commit is contained in:
Paulus Schoutsen 2016-04-08 23:46:05 -07:00
parent 045137071a
commit 8474be607d
3 changed files with 131 additions and 0 deletions

View File

@ -0,0 +1,43 @@
---
layout: page
title: "Raspberry Pi Camera"
description: "Instructions how to integrate Raspberry Pi within Home Assistant."
date: 2016-04-08 10:00
sidebar: true
comments: false
sharing: true
footer: true
logo: raspberry-pi.png
ha_category: Camera
ha_iot_class: "Local Polling"
---
The `rpi` platform allows you to integrate the Raspberry Pi camera into Home Assistant. This component uses the application "raspistill" to store the image from camera.
```yaml
# Example configuration.yaml entry
camera:
platform: raspberry_camera
name: Raspberry Pi Camera
image_width: 640
image_height: 480
image_quality: 7
image_rotation: 0
timelapse: 1000
horizontal_flip: 0
vertical_flip: 0
file_path: /tmp/image.jpg
```
Configuration variables:
- **name** (optional): name of the camera
- **image_width** (optional): set the image width (default: 640)
- **image_height** (optional): set the image width (default: 480)
- **image_quality** (optional): set the image quality (from 0 to 100, default: 7)
- **image_rotation** (optional): Set image rotation (0-359, default: 0)
- **horizontal_flip** (optional): Set horizontal flip (0 to disable, 1 to enable, default: 0)
- **vertical_flip** (optional): Set vertical flip (0 to disable, 1 to enable, default: 0)
- **timelapse** (optional): Takes a picture every <t>ms (default: 1000)
- **file_path** (optional): Save the picture in a custom file path (default: camera components folder)

View File

@ -0,0 +1,32 @@
---
layout: page
title: "NZBGet"
description: "Instructions how to integrate NZBGet within Home Assistant."
date: 2016-04-08 19:59
sidebar: true
comments: false
sharing: true
footer: true
ha_category: Sensor
ha_iot_class: "Local Polling"
---
The `NZBGet` platform will allow you to monitor your downloads with [NZBGet](http://NZBGet.net) from within Home Assistant and setup automation based on the information.
To use NZBGet with your installation, add the following to your `configuration.yaml` file:
```yaml
# Example configuration.yaml entry
sensor:
- platform: nzbget
base_url: http://192.168.1.18:6789
username: apiuser
password: apipass
monitored_variables:
- ArticleCacheMB
- DownloadRate
- DownloadPaused
- FreeDiskSpaceMB
- PostPaused
- RemainingSizeMB
```

View File

@ -0,0 +1,56 @@
---
layout: post
title: "0.17: Onkyo, Panasonic, GTFS and config validation"
description: "Home Assistant 0.17 has arrived."
date: 2016-04-08 23:10:00 -0700
date_formatted: "April 9, 2016"
author: Paulus Schoutsen
author_twitter: balloob
comments: true
categories: Release-Notes
---
Another awesome release ready to hit your homes. YAML can be hard for beginners and more experienced automators. So to help catch those pesky errors that sneak into your files we've been hard at work to introduce config validation! Especially huge thanks to @jaharkes for his hard work on this. Config validation is still in it's early stages. More common platforms and components have been added but we didn't do everything yet.
When we encounter an invalid config we will now write a warning to your logs. You can see those in the frontend by clicking on the last developer tool. We're looking into options to make it more clear - it is a work in progress.
Another big thing is the addition of GTFS support. You probably don't know it, but GTFS is the standard that public transit companies all over the world use to distribute their schedule. This means that you can now have the time of the next bus/train/etc right in your frontend.
<img src='/images/supported_brands/onkyo.png' style='clear: right; margin-left: 5px; border:none; box-shadow: none; float: right; margin-bottom: 16px;' width='150' /><img src='/images/supported_brands/loop.png' style='clear: right; margin-left: 5px; border:none; box-shadow: none; float: right; margin-bottom: 16px;' width='150' /><img src='/images/supported_brands/panasonic.png' style='clear: right; margin-left: 5px; border:none; box-shadow: none; float: right; margin-bottom: 16px;' width='150' />
- Config validation ([@balloob], [@jaharkes])
- Sensor: [GTFS] support (public transit open standard) ([@robbiet480])
- Camera: [Raspberry PI] support added ([@LucaSoldi])
- Z-Wave: improved startup reliability ([@srcLurker])
- Media Player: [Onkyo receiver] now supported ([@danieljkemp])
- Sensor: [Loop Energy] now supported ([@pavoni])
- Thermostat: [Z-Wave] now supported ([@coteyr], [@turbokongen], [@luxus])
- Sensor: [NZBGet] now supported ([@justyns])
- Media Player: [Panasonic Viera TV] now supported ([@florianholzapfel])
- Thermostats: Use whole degrees if user uses Fahrenheit ([@JshWright])
- Frontend: more material love ([@balloob])
[@balloob]: https://github.com/balloob/
[@coteyr]: https://github.com/coteyr/
[@danieljkemp]: https://github.com/danieljkemp/
[@florianholzapfel]: https://github.com/florianholzapfel/
[@jaharkes]: https://github.com/jaharkes/
[@JshWright]: https://github.com/JshWright/
[@justyns]: https://github.com/justyns/
[@LucaSoldi]: https://github.com/LucaSoldi/
[@luxus]: https://github.com/luxus/
[@pavoni]: https://github.com/pavoni/
[@robbiet480]: https://github.com/robbiet480/
[@srcLurker]: https://github.com/srcLurker/
[@turbokongen]: https://github.com/turbokongen/
[GTFS]: /components/sensor.gtfs/
[Loop Energy]: /components/sensor.loop_energy/
[NZBGet]: /components/sensor.nzbget/
[Onkyo receiver]: /components/media_player.onkyo/
[Panasonic Viera TV]: /components/media_player.panasonic_viera/
[Raspberry PI]: /components/camera.rpi_camera/
[Z-Wave]: /components/thermostat.zwave/
### Breaking changes
As of now we are not aware of any breaking changes. However, it might be that Home Assistant will not start for you because of an invalid configuration. A common mistake that people are making is that they are still referring to `execute_service` in their script configs. This should be `service`.