From 6c0d9b08faf4e43d665ebeb871fa140b2d2fb450 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Thu, 14 May 2015 22:52:55 -0700 Subject: [PATCH] Add release notes May 14, 2015 --- _deploy | 2 +- .../_posts/2015-05-14-release-notes.markdown | 121 ++++++++++++++++++ .../components/device_tracker.ddwrt.markdown | 2 +- .../device_tracker.netgear.markdown | 2 +- source/components/index.markdown | 8 +- source/components/scheduler.markdown | 29 +++++ source/components/sensor.mysensors.markdown | 20 +++ source/components/wink.markdown | 1 + source/getting-started/index.markdown | 2 +- source/images/supported_brands/mysensors.png | Bin 0 -> 5715 bytes 10 files changed, 182 insertions(+), 5 deletions(-) create mode 100644 source/_posts/2015-05-14-release-notes.markdown create mode 100644 source/components/sensor.mysensors.markdown create mode 100644 source/images/supported_brands/mysensors.png diff --git a/_deploy b/_deploy index f53c01f50dc..85a2976dd5f 160000 --- a/_deploy +++ b/_deploy @@ -1 +1 @@ -Subproject commit f53c01f50dcaeef0b5e482b436050ab7143ea80c +Subproject commit 85a2976dd5fb48f95e26274c70306c4ff8057926 diff --git a/source/_posts/2015-05-14-release-notes.markdown b/source/_posts/2015-05-14-release-notes.markdown new file mode 100644 index 00000000000..3b329b9a5ee --- /dev/null +++ b/source/_posts/2015-05-14-release-notes.markdown @@ -0,0 +1,121 @@ +--- +layout: post +title: "Release notes for May 14, 2015" +description: "Introducing support for MySensors, InstaPush, Notify My Android, OpenWeatherMap and Jabber." +date: 2015-05-14 22:25 -0700 +date_formatted: "May 14, 2015" +comments: true +categories: release-notes +--- + +Almost three busy weeks have past since the last release. We used this time to finally make the overhaul to use UTC as the internal date time format. We added a bunch of test coverage in the process to make sure the transition went smoothly. Pleas see [the blog post about the UTC refactor](/blog/2015/05/09/utc-time-zone-awareness/#backwards-incompatible-stuff) for backwards incompatible changes. + +This release includes a significant startup boost for the frontend and a fix for Wemo discovery after their latest firmware upgrade. + +I would like to give a big shout out to our newest contributor [fabaff](https://github.com/fabaff) for taking the time to improve the documentation. + +

+To update to the latest version, run scripts/update. Please report any issues on GitHub. +

+ +__Overwriting Entity Attributes__
+Before diving into the newly supported devices and services, I want to highlight an awesome configuration enhancement by [rmkraus](https://github.com/rmkraus): overwriting entity attributes. + +These new configuration settings allow you to overwrite entity state attributes. The main usage for this is being able to overwrite attributes that influence how an entity is shown in the interface. + +```yaml +# Example configuration.yaml entry +homeassistant: + customize: + light.bowl: + # hides this entity from the interface + hidden: true + light.ceiling: + # Replaces the state badge with given picture + entity_picture: http://graph.facebook.com/schoutsen/picture +``` + +__MySensors__
+ +[Andythigpen](https://github.com/andythigpen) and [Theolind](https://github.com/theolind) have added support for the [MySensors platform](http://www.mysensors.org) to Home Assistant. + +```yaml +# Example configuration.yaml entry +sensor: + platform: mysensors + port: /dev/ttyACM0 +``` + +__OpenWeatherMap__
+ +[Fabaff](https://github.com/fabaff) has contributed support for [OpenWeatherMap](http://openweathermap.org). This will allow you to integrate local meteorological data into Home Assistant. + +```yaml +# Example configuration.yaml entry +sensor: + platform: openweathermap + api_key: YOUR_API_KEY + monitored_variables: + - type: 'weather' + - type: 'temperature' + - type: 'wind_speed' + - type: 'humidity' + - type: 'pressure' + - type: 'clouds' + - type: 'rain' + - type: 'snow' +``` + +__InstaPush__
+ +[Fabaff](https://github.com/fabaff) has contributed support for [InstaPush](https://instapush.im). This will allow you send messages from Home Assistant to your iOS and Android devices. + +```yaml +# Example configuration.yaml entry +notify: + platform: instapush + # Get those by creating a new application, event, and tracker on https://instapush.im + api_key: ABCDEFGHJKLMNOPQRSTUVXYZ + app_secret: ABCDEFGHJKLMNOPQRSTUVXYZ + event: ABCDEFGHJKLMNOPQRSTUVXYZ + tracker: ABCDEFGHJKLMNOPQRSTUVXYZ +``` + +__XMPP__
+ +[Fabaff](https://github.com/fabaff) has contributed support for Jabber/XMPP. This will allow you send messages from Home Assistant to anyone on Jabber/XMPP. + +```yaml +# Example configuration.yaml entry +notify: + platform: xmpp + sender: YOUR_JID + password: YOUR_JABBER_ACCOUNT_PASSWORD + recipient: YOUR_RECIPIENT +``` + +__Notify My Android__
+ +[Fabaff](https://github.com/fabaff) has contributed support for [Notify My Android](http://www.notifymyandroid.com/). This will allow you to send messages from Home Assistant to your Android device. + +```yaml +# Example configuration.yaml entry +notify: + platform: nma + # Get this by registering a new application on http://www.notifymyandroid.com/ + api_key: ABCDEFGHJKLMNOPQRSTUVXYZ +``` + +__Time & Date sensor__
+[Fabaff](https://github.com/fabaff) has contributed a time & date sensor. This will allow you to show the current time/date on the dashboard. + +```yaml +# Example configuration.yaml entry +sensor: + platform: time_date + monitored_variables: + - type: 'time' + - type: 'date' + - type: 'date_time' + - type: 'time_date' +``` diff --git a/source/components/device_tracker.ddwrt.markdown b/source/components/device_tracker.ddwrt.markdown index 45686a57a95..c7b8b00a47e 100644 --- a/source/components/device_tracker.ddwrt.markdown +++ b/source/components/device_tracker.ddwrt.markdown @@ -9,7 +9,7 @@ sharing: true footer: true --- - + This platform offers presence detection by looking at connected devices to a [DD-WRT](http://www.dd-wrt.com/site/index) based router. ```yaml diff --git a/source/components/device_tracker.netgear.markdown b/source/components/device_tracker.netgear.markdown index 90256e65d81..dc3b59b2bc9 100644 --- a/source/components/device_tracker.netgear.markdown +++ b/source/components/device_tracker.netgear.markdown @@ -9,7 +9,7 @@ sharing: true footer: true --- - + This platform allows you to detect presence by looking at connected devices to a [Netgear](http://www.netgear.com/) device. ```yaml diff --git a/source/components/index.markdown b/source/components/index.markdown index a15c2dc18ec..e0b2d52c007 100644 --- a/source/components/index.markdown +++ b/source/components/index.markdown @@ -58,6 +58,12 @@ Entities are things that you want to observe within Home Assistant. Support for Control WeMo switches and read the usage statistics from Insight switches. + + + MySensors switches + Integrate MySensors sensors. + + DD-WRT routers @@ -224,7 +230,7 @@ the manufacturers of these devices. -Time & Date +Time & Date Displays the time and the date. diff --git a/source/components/scheduler.markdown b/source/components/scheduler.markdown index be8a23338a2..ca78e7521ee 100644 --- a/source/components/scheduler.markdown +++ b/source/components/scheduler.markdown @@ -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" + } + ] + } +] +``` diff --git a/source/components/sensor.mysensors.markdown b/source/components/sensor.mysensors.markdown new file mode 100644 index 00000000000..df659179aee --- /dev/null +++ b/source/components/sensor.mysensors.markdown @@ -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 +--- + + +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 +``` diff --git a/source/components/wink.markdown b/source/components/wink.markdown index 85b114ac954..bdab22babf3 100644 --- a/source/components/wink.markdown +++ b/source/components/wink.markdown @@ -9,6 +9,7 @@ sharing: true footer: true --- + 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:
Wink offers one, quick and simple way to connect people with the products they rely on every day in their home.
diff --git a/source/getting-started/index.markdown b/source/getting-started/index.markdown index 4ee5c2f2b96..d866d5834d1 100644 --- a/source/getting-started/index.markdown +++ b/source/getting-started/index.markdown @@ -24,7 +24,7 @@ Installing and running Home Assistant on your local machine is easy. Make sure y ```bash git clone --recursive https://github.com/balloob/home-assistant.git cd home-assistant -python3 -m pip install -r requirements.txt +python3 -m pip install --user -r requirements.txt python3 -m homeassistant --open-ui ```

diff --git a/source/images/supported_brands/mysensors.png b/source/images/supported_brands/mysensors.png new file mode 100644 index 0000000000000000000000000000000000000000..d352c920b8b9c42650b22e65e7811ab421952482 GIT binary patch literal 5715 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

c<`UGV| zLX$WcremUe3$nOxl<5OiEPc@u_1NszcqJ6~)ecuIC1!2CFF1%y`3sL#1dcEwAh7HF zY#x}3M>LX4Q-7GC$>t2g=Wa-cZ}yEnka%k>>QENxBT=-UiAsD=nlT~1-p<#gMGebxdWxe}l&tJZM$p+;dU}%x-1u z$M@%agdAK@yrlEX3V_|0!g2>wB62Egy>hZH8w)&8LKB_xJy9&9**E!O@cMUz%;6$hPiRR=if4 z@5|a<;Lv^2zf%YMwKBUUK)Kmg3e0IK&0#}yuGVmU!2K_+wb+~|pgr=K@3jXsSC16f zxvh9i?gRUkl1)jIbM7KByUz>6wCEpgml42yhiiN`+j0hGwQ>qzOM09*rX0k^0y&h? znb|GB9&4c`P^m?zXu!Lo{c7nnX?I7KBqGakKR~r+#GIAnGDQ|R60`eQujX4$Ft;v3 zr!%`XZ=sq0!a*f@_(?)lSQn6E{T=&~`gf|z(+3cr(B*s3yX_+Y(mfW8=#!e;b26#A zSS1N`MsY>KwM-6*G$!_j&uwWjVshCyf3gYo2j=U_>^}Q2)>?8~v@f@oVvBLz&m?dm z#SrY0G-P320Oo79q!O7A(nf%mN7V9$E`{PD&&qMHZ7{ zX>i% zE{c{=cVzPQ9bG=3IwmXBO|&3ffEU`pLUJ%gAgzxI$0Weozlb*PbNO^lPJ~vLUmwza zKI8k>LzTaDuFDmjP3M~JW5%J`=C8EuBqVn;2WY=}EU)molfV%}loQ@&5f8)+L&sNS z_SXcOY-kavTGiFA>=Nf00i2rdn3RN8*p61EdU*bX;tyN-=)1Y9k++(-Ui@8+%uzO= zlm=h1gY#k%ZWhD}GSKZg4*>y>Ysu;fZ>uRCc^88??osZ$wMOjrwZ`$PqZj`ZY@kL5 zOX-)FOE2w5wqM}~bkZke%a*pZ!vP4);n15>u9x5MSlaJyLB@i(r7i9E1PGOWEC5;B z0uV=Yu|SJ^wX|n#FZoA2TeB_wFjg#5E=#wx=V<>gzyM_xv@9rTHPrwB002ovPDHLk FV1l}{<#_-A literal 0 HcmV?d00001