Skip to content

Commit e2a5676

Browse files
committed
Update blog post
1 parent 8a8e6e9 commit e2a5676

File tree

5 files changed

+90
-36
lines changed

5 files changed

+90
-36
lines changed

source/_components/ffmpeg.markdown

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ sharing: true
99
footer: true
1010
logo: ffmpeg.png
1111
ha_category: Hub
12-
featured: true
1312
---
1413

1514
It allow other Home-Assistant components to process video/audio streams. It need a ffmpeg binary in your system path. It support all ffmpeg version since 3.0.0. If you have a older version, please update.
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
layout: page
3+
title: "Keyboard"
4+
description: "Instructions how to use a keyboard to remote control Home Assistant."
5+
date: 2016-09-28 14:39
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: keyboard.png
11+
ha_category: Other
12+
ha_release: 0.29
13+
ha_iot_class: "Local Push"
14+
---
15+
16+
Recieve signals from a keyboard and use it as a remote control.
17+
18+
This component allows to use a keyboard as remote control. It will
19+
fire ´keyboard_remote_command_received´ events witch can then be used
20+
in automation rules.
21+
22+
The `evdev` package is used to interface with the keyboard and thus this
23+
is Linux only. It also means you can't use your normal keyboard for this,
24+
because `evdev` will block it.
25+
26+
27+
```yaml
28+
# Example configuration.yaml entry
29+
keyboard_remote:
30+
device_descriptor: '/dev/input/by-id/foo'
31+
key_value: 'key_up' # optional alternaive 'key_down' and 'key_hold'
32+
# be carefull, 'key_hold' fires a lot of events
33+
```
34+
35+
And an automation rule to bring breath live into it.
36+
37+
```yaml
38+
automation:
39+
alias: Keyboard All light on
40+
trigger:
41+
platform: event
42+
event_type: keyboard_remote_command_received
43+
event_data:
44+
key_code: 107 # inspect log to obtain desired keycode
45+
action:
46+
service: light.turn_on
47+
entity_id: light.all
48+
```

source/_components/modbus.markdown

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,7 @@ To add modbus to your installation, add the following to your `configuration.yam
2020
For a network connection:
2121

2222
```yaml
23-
<<<<<<< HEAD
24-
# Modbus TCP
25-
=======
2623
# Example configuration.yaml entry for a TCP connection
27-
>>>>>>> current
2824
modbus:
2925
type: tcp
3026
host: IP_ADDRESS

source/_posts/2016-09-24-async-sleepiq-emoncms-stocks.markdown renamed to source/_posts/2016-09-29-async-sleepiq-emoncms-stocks.markdown

Lines changed: 41 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,32 @@
11
---
22
layout: post
3-
title: "0.29: Async, SleepIQ, OpenALPR, EmonCMS, stocks, and plants"
3+
title: "0.29: 🎈 Async, SleepIQ, OpenALPR, EmonCMS, stocks, and plants"
44
description: "Move to asynchronous, Support for SleepIQ, OpenALPR, and EmonCMS, and other goodies."
5-
date: 2016-09-24 08:04:05 +0900
5+
date: 2016-09-29 03:04:05 +0000
66
date_formatted: "September 24, 2016"
77
author: Paulus Schoutsen & Fabian Affolter
88
author_twitter: balloob
99
comments: true
1010
categories: Release-Notes
1111
---
1212

13-
Last week, September 17 marked our 3 year anniversary. In this time Home Assistant managed to grow from a simple script that turned on my lights when the sun set to a kick ass open source project with the best community an open-source project could wish for. This release contains features, bug fixes and performance tweaks by a total of **50** different people! We have also managed to cross the 1000 forks on GitHub. Talking about momentum!
13+
Two weeks ago, September 17 marked our 3 year anniversary. In this time Home Assistant managed to grow from a simple script that turned on my lights when the sun set to a kick ass open source project with the best community an open-source project could wish for. This release contains features, bug fixes and performance tweaks by a total of **50** different people! We have also managed to cross the 1000 forks on GitHub. Talking about momentum!
1414

1515
This is a big release as we've completely overhauled the internals of Home Assistant. When I initially wrote Home Assistant, still figuring out the ins and outs of Python, I went for an approach that I was familiar with for an application with many moving parts: threads and locks. This approach has served us well over the years but it was slower than it needed to be, especially on limited hardware.
1616

17-
This all changed when [@bbangert] came around and took on the tough job to migrate the core over to use asynchronous programming. He did an amazing job and I am happy to say that the initial port has been done and is included in this release! On top of that, we have been able to keep our simple and straightforward API at the same time. We are still in the process of migrating more and more components over to the asynchronous API, so expect more speedups and awesome features in the upcoming releases. Big thanks also to [@turbokongen], [@lwis], and [@technicalpickles] for helping out with debugging the segfault issues.
17+
This all changed when [@bbangert] came around and took on the tough job to migrate the core over to use asynchronous programming. He did an amazing job and I am happy to say that the initial port has been done and is included in this release! On top of that, we have been able to keep our simple and straightforward API at the same time. We are still in the process of migrating more and more components over to the asynchronous API, so expect more speedups and awesome features in the upcoming releases.
1818

1919
### {% linkable_title SleepIQ and OpenALPR %}
20+
2021
There now is support for two new super cool things: Beds and license plates. [@technicalpickles] created a [SleepIQ] component that let you monitor the sensor data of your bed. [@pvizeli] has added license plate recognition based on [OpenALPR]! This means that you can now be notified about which car is parked on your driveway or in your garage. I also would like to use this opportunity to give a big shoutout to [@pvizeli] for being such an awesome member of our community. He joined us at the end of June and has helped crush bugs and add awesome features ever since (65 pull requests already!).
2122

2223
### {% linkable_title Configuration validation %}
2324

24-
On the voluptuous front we have also made great progress. We were able to fully remove the legacy config helpers and have migrated 323 of the 346 components and platforms that needed migrating! This does mean that for some components the configuration has slightly changed, make sure to check out the breaking changes section at the bottom for more info. Thanks everybody for reviewing the Pull requests, testing the changes, and reporting issues.
25+
On the voluptuous front we have also made great progress. We were able to fully remove the legacy config helpers and have migrated 323 of the 346 components and platforms that needed migrating! This does mean that for some components the configuration has slightly changed, make sure to check out the breaking changes section at the bottom for more info. Thanks everybody for reviewing the Pull requests, testing the changes, and reporting issues.
26+
27+
### {% linkable_title Delayed Release %}
28+
29+
As you might have noticed, this release has been delayed by 5 days. This was due to a rare, difficult to reproduce problem with the Python interpreter. A huuuuge thanks to all the people that have helped countless hours in researching, debugging and fixing this issue: [@bbangert], [@turbokongen], [@lwis], [@kellerza], [@technicalpickles], [@pvizeli], [@persandstrom] and [@joyrider3774]. I am grateful to have all of you as part of the Home Assistant community.
2530

2631
### {% linkable_title All changes %}
2732

@@ -32,7 +37,7 @@ On the voluptuous front we have also made great progress. We were able to fully
3237
- Cover: [Vera] is now supported ([@pavoni])
3338
- Climate: Vera [climate] devices are now supported ([@robjohnson189])
3439
- Climate: [MySensors] is now supported ([@kaustubhphatak])
35-
- Control Home Assistant with keyboard shortcuts ([@deisi])
40+
- Control Home Assistant with [keyboard shortcuts][keyboard_remote] ([@deisi])
3641
- More voluptuous config validations ([@fabaff], [@kellerza], [@balloob])
3742
- New [Nuimo] controller support added ([@gross1989])
3843
- Sensor: [BOM] Weather component ([@tinglis1])
@@ -45,6 +50,8 @@ On the voluptuous front we have also made great progress. We were able to fully
4550
- Sensor: [KNX] sensors now supported ([@daBONDi])
4651
- [Wink] improvements ([@w1ll1am23])
4752
- [ISY] improvements ([@Teagan42])
53+
- Link to relevant docs in config validation error messages ([@fabaff])
54+
- Greatly improve the performance of templates ([@balloob], [@pvizeli])
4855
- Notify - [Slack]: Support for username/icon ([@Khabi])
4956
- MQTT room detection: Away [timeout] now supported ([@mKeRix])
5057
- Climate: [Nest] can now control the fan ([@jawilson])
@@ -53,18 +60,20 @@ On the voluptuous front we have also made great progress. We were able to fully
5360
- Sensor: Yahoo! Finance [stocks] now supported ([@tchellomello])
5461
- Sensor: Set value based on incoming [email] ([@sam-io])
5562
- Light: White value now supported ([@mxtra], [@MartinHjelmare])
56-
- [InfluxDB]: Allow attaching extra data ([@lwis])
63+
- [InfluxDB] now allows attaching extra data ([@lwis])
5764
- [OpenALPR] support ([@pvizeli])
5865
- Minor features and bug fixes by [@fabaff], [@w1ll1am23], [@turbokongen], [@clach04], [@mKeRix], [@pvizeli], [@DavidLP], [@nvella], [@Teagan42], [@ericwclymer], [@wokar], [@kellerza], [@nkgilley], [@jawilson], [@Danielhiversen], [@ej81], [@danieljkemp], [@balloob], [@philhawthorne], [@LinuxChristian], [@milas], [@simonszu], [@Cinntax], [@irvingwa], [@sytone], [@kk7ds], [@robbiet480].
5966

6067
### {% linkable_title Breaking changes %}
6168

6269
- `yahooweather` default name is now `yweather`. Also min and max temperature are now correctly called `Temperature Min` and `Temperature Max`.
6370
- `ffmpeg` is now a component for manage some things central. All `ffmpeg_bin` options have moved to this compoment from platforms.
71+
- Config has changed for [X10] lights.
6472

6573
### {% linkable_title If you need help... %}
6674
...don't hesitate to use our [Forum](https://community.home-assistant.io/) or join us for a little [chat](https://gitter.im/home-assistant/home-assistant). The release notes have comments enabled but it's preferred if you the former communication channels. Thanks.
6775

76+
[@joyrider3774]: https://github.com/joyrider3774
6877
[@balloob]: https://github.com/balloob
6978
[@bbangert]: https://github.com/bbangert
7079
[@chrom3]: https://github.com/chrom3
@@ -113,26 +122,28 @@ On the voluptuous front we have also made great progress. We were able to fully
113122
[@w1ll1am23]: https://github.com/w1ll1am23
114123
[@wokar]: https://github.com/wokar
115124

116-
[BOM]: https://home-assistant.io/components/sensor.bom/
117-
[climate]: https://home-assistant.io/components/climate.vera/
118-
[email]: https://home-assistant.io/components/sensor.imap_email_content/
119-
[Emoncms]: https://home-assistant.io/components/sensor.emoncms/
120-
[filtering]: https://home-assistant.io/components/logbook/
121-
[InfluxDB]: https://home-assistant.io/components/influxdb/
122-
[ISY]: https://home-assistant.io/components/isy994/
123-
[KNX]: https://home-assistant.io/components/sensor.knx/
124-
[Kodi]: https://home-assistant.io/components/notify.kodi/
125-
[Modbus]: https://home-assistant.io/components/modbus/
126-
[Nest]: https://home-assistant.io/components/fan.nest/
127-
[Nuimo]: https://home-assistant.io/components/nuimo/
128-
[OpenALPR]: https://home-assistant.io/components/openalpr/
129-
[passwordless]: https://home-assistant.io/components/http/
130-
[Simplepush]: https://home-assistant.io/components/notify.simplepush/
131-
[Slack]: https://home-assistant.io/components/notify.slack/
132-
[SleepIQ]: https://home-assistant.io/components/sleepiq/
133-
[stocks]: https://home-assistant.io/components/sensor.yahoo_finance/
134-
[timeout]: https://home-assistant.io/components/sensor.mqtt_room/
135-
[Vera]: https://home-assistant.io/components/cover.vera/
136-
[Wink]: https://home-assistant.io/components/wink/
137-
[plant]: https://home-assistant.io/components/sensor.miflora/
138-
125+
[BOM]: /components/sensor.bom/
126+
[climate]: /components/climate.vera/
127+
[email]: /components/sensor.imap_email_content/
128+
[Emoncms]: /components/sensor.emoncms/
129+
[filtering]: /components/logbook/
130+
[InfluxDB]: /components/influxdb/
131+
[ISY]: /components/isy994/
132+
[KNX]: /components/sensor.knx/
133+
[Kodi]: /components/notify.kodi/
134+
[Modbus]: /components/modbus/
135+
[Nest]: /components/fan.nest/
136+
[Nuimo]: /components/nuimo_controller/
137+
[OpenALPR]: /components/openalpr/
138+
[passwordless]: /components/http/
139+
[Simplepush]: /components/notify.simplepush/
140+
[Slack]: /components/notify.slack/
141+
[SleepIQ]: /components/sleepiq/
142+
[stocks]: /components/sensor.yahoo_finance/
143+
[timeout]: /components/sensor.mqtt_room/
144+
[Vera]: /components/cover.vera/
145+
[Wink]: /components/wink/
146+
[plant]: /components/sensor.miflora/
147+
[MySensors]: /components/climate.mysensors/
148+
[keyboard_remote]: /components/keyboard_remote
149+
[X10]: /components/light.x10/

source/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ <h1>Current Version: 0.29</h1>
1919
Released: <span class='release-date'>September 29, 2016</span>
2020

2121
<div class='links'>
22-
<a href='/blog/2016/09/24/tbd/'>Release notes</a>
22+
<a href='/blog/2016/09/28/async-sleepiq-emoncms-stocks'>Release notes</a>
2323
</div>
2424
</div>
2525
<div class='join-community material-card text'>

0 commit comments

Comments
 (0)