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 00000000000..d352c920b8b Binary files /dev/null and b/source/images/supported_brands/mysensors.png differ