diff --git a/_deploy b/_deploy index d40a2dc4d84..1f74908bdf1 160000 --- a/_deploy +++ b/_deploy @@ -1 +1 @@ -Subproject commit d40a2dc4d840e4b42d1015616f9b250f14e7b15d +Subproject commit 1f74908bdf147629f9b317058316714e2ffd1ec2 diff --git a/source/_posts/2015-03-22-release-notes.markdown b/source/_posts/2015-03-22-release-notes.markdown index 54b0c190b03..39320e1314b 100644 --- a/source/_posts/2015-03-22-release-notes.markdown +++ b/source/_posts/2015-03-22-release-notes.markdown @@ -32,6 +32,8 @@ script: entity_id: group.living_room ``` + + __Scene__
I (Paulus) have contributed a scene component. A user can create scenes that capture the states you want certain entities to be. For example a scene can contain that light A should be turned on and light B should be bright red. Deactivating a scene will restore the previous state from before the scene was activated. Just like scripts, scenes have their own separate page to see which scenes are on. diff --git a/source/_posts/2015-04-25-release-notes.markdown b/source/_posts/2015-04-25-release-notes.markdown index f34500f8521..36fa309a29c 100644 --- a/source/_posts/2015-04-25-release-notes.markdown +++ b/source/_posts/2015-04-25-release-notes.markdown @@ -38,6 +38,8 @@ I (Paulus) have added a logbook component. The logbook component provides a diff logbook: ``` + + __Transmission support__
James has also contributed support for integrating Transmission into Home Assistant. diff --git a/source/_posts/2015-05-14-release-notes.markdown b/source/_posts/2015-05-14-release-notes.markdown index 3b329b9a5ee..286106f52ec 100644 --- a/source/_posts/2015-05-14-release-notes.markdown +++ b/source/_posts/2015-05-14-release-notes.markdown @@ -18,6 +18,8 @@ I would like to give a big shout out to our newest contributor [fabaff](https:// 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. diff --git a/source/_posts/2015-06-10-release-notes.markdown b/source/_posts/2015-06-10-release-notes.markdown new file mode 100644 index 00000000000..8e072a3384e --- /dev/null +++ b/source/_posts/2015-06-10-release-notes.markdown @@ -0,0 +1,178 @@ +--- +layout: post +title: "Release notes for June 10, 2015" +description: "Polymer 1.0, reviving media player support and the command line switch." +date: 2015-06-10 18:54 -0700 +date_formatted: "June 10, 2015" +comments: true +categories: release-notes +--- + +Wow, almost a month has gone by since the last release and this release is *packed*. The biggest part of this release is probably one that you won't notice: the frontend has been upgraded from Polymer 0.5 to the brand new released Polymer 1.0. Polymer has been declared stable by the Google overlords which will allow us to expand functionality that was waiting for this moment to arrive. + +This release sets a record for the amount of people involved: 8! [Andythigpen](https://github.com/Andythigpen), [Jamespcole](https://github.com/Jamespcole), [Azelphur](https://github.com/Azelphur), [Fabaff](https://github.com/Fabaff), [Dutchy-](https://github.com/Dutchy-), [Fbradyirl](https://github.com/Fbradyirl), [wind-rider](https://github.com/wind-rider) and [ettisan](https://github.com/ettisan), thanks a lot for your contributions! + +A big improvement has been brought this release by wind-rider. He took the time to revive the Chromecast support and started improving the media player integration. This triggered other people to join in resulting in a revamped media player experience and support for the Music Player Daemon. + +

+ + Example of the new media player cards +

+ +

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

+ + + +Before jumping into the newly supported platforms, here are the other improvements that are landing this release: + + * Fronted upgraded to Polymer 1.0 by @balloob + * Include other YAML files using the `!include` keyword by @andythigpen + * Switch support and bug fixes for Vera platform by @jamespcole + * HTTP session support for the HTTP component by @jamespcole + * Device tracker bugfixes by @Dutchy- + * Bugfix for device tracker platform by @fbradyirl + * Fixing Chromecast support by @wind-rider + * Media player improvements by @balloob and @wind-rider + * Nest thermostat bugfixes by @balloob + * Fix the device tracker getting in a deadlock by @balloob + * Update documentation by @fabaff + +__Music Player Daemon__
+ +Fabaff has contributed MusicPlayerDaemon support. The mpd platform allows you to control a [Music Player Daemon](http://www.musicpd.org/) from Home Assistant. Right now, only playback is supported and not playlist manipulation. + +```yaml +# Example configuration.yaml entry +media_player: + platform: mpd + server: 127.0.0.1 + port: 6600 + location: bedroom +``` + +__Command line switch__
+A switch platform that issues specific commands when it is turned on and off. This might very well become our most popular platform as it allows anyone to integrate any type of switch into Home Assistant that can be controlled from the command line, including calling other scripts! + +```yaml +# Example configuration.yaml entry +switch: + platform: command_switch + switches: + - kitchen_light: + oncmd: switch_command on kitchen + offcmd: switch_command off kitchen +``` + +__LimitlessLED__
+This new platform can control your LimitlessLED lights from within Home Assistant. The lights are also known as EasyBulb, AppLight, AppLamp, MiLight, LEDme, dekolight or iLight. + +```yaml +# Example configuration.yaml entry +light: + platform: limitlessled + host: 192.168.1.10 + group_1_name: Living Room + group_2_name: Bedroom + group_3_name: Office + group_4_name: Kitchen +``` + + +__Bitcoin sensor__
+ +The bitcoin platform displays various details about the [Bitcoin](https://bitcoin.org) network. If you have an online wallet from [Blockchain.info](https://blockchain.info/) the sensor is capable to show your current balance. + +```yaml +# Example configuration.yaml entry +sensor: + platform: bitcoin + wallet: 'YOUR WALLET_ID' + password: YOUR_ACCOUNT_PASSWORD + currency: YOUR CURRENCY + display_options: + - exchangerate + - trade_volume_btc + - miners_revenue_usd + - btc_mined + - trade_volume_usd + - difficulty + - minutes_between_blocks + - number_of_transactions + - hash_rate + - timestamp + - mined_blocks + - blocks_size + - total_fees_btc + - total_btc_sent + - estimated_btc_sent + - total_btc + - total_blocks + - next_retarget + - estimated_transaction_volume_usd + - miners_revenue_btc + - market_price_usd +``` + + +__SMTP notificatoin platform__
+ +The smtp platform allows you to deliver notifications from Home Assistant to an e-mail recipient. + +```yaml +# Example configuration.yaml entry +notify: + platform: mail + server: MAIL_SERVER + port: YOUR_SMTP_PORT + sender: SENDER_EMAIL_ADDRESS + starttls: 1 or 0 + username: YOUR_SMTP_USERNAME + password: YOUR_SMTP_PASSWORD + recipient: YOUR_RECIPIENT +``` + + +__Syslog notification platform__
+The syslog platform allows you to deliver notifications from Home Assistant to the local syslog. + +```yaml +# Example configuration.yaml entry +notify: + platform: syslog +``` + + +__Swiss Public transport sensor__
+The swiss public transport sensor will give you the next two departure times from a given location to another one in Switzerland. See the [component page](/components/sensor.swiss_public_transport.html) for more information how to set it up. + + +__Transmission turtle mode switch__
+ +The transmission platform allows you to control your [Transmission](http://www.transmissionbt.com/) client from within Home Assistant. The platform enables you switch to your 'Alternative Speed Limits' (aka 'Turtle mode') setting. + +```yaml +# Example configuration.yaml entry +switch: + platform: transmission + name: Transmission + host: 192.168.1.26 + port: 9091 + username: YOUR_USERNAME + password: YOUR_PASSWORD +``` + + +__Hikvision camera motion detection support__
+This switch platform allows you to control your motion detection setting on your Hikvision camera. + +``` +# Example configuration.yaml entry +switch: + platform: hikvisioncam + name: Hikvision Cam 1 Motion Detection + host: 192.168.1.26 + username: YOUR_USERNAME + password: YOUR_PASSWORD +``` diff --git a/source/components/index.markdown b/source/components/index.markdown index e616ad946f8..ddb46e9a733 100644 --- a/source/components/index.markdown +++ b/source/components/index.markdown @@ -115,6 +115,24 @@ Entities are things that you want to observe within Home Assistant. Support for Track what is being played and control playback. + + + Command line Switch + Switch that issues command line commands when turned on and off. + + + + + LimitlessLED + Control your LimitlessLED lights. + + + + + Hikvision + Control the motion detection setting on your Hikvision camera. + + Insteon Devices diff --git a/source/components/light.limitlessled.markdown b/source/components/light.limitlessled.markdown new file mode 100644 index 00000000000..1280066973a --- /dev/null +++ b/source/components/light.limitlessled.markdown @@ -0,0 +1,23 @@ +--- +layout: page +title: "LimitlessLED support" +description: "Instructions how to setup LimitlessLED within Home Assistant." +date: 2015-06-10 22:48 +sidebar: false +comments: false +sharing: true +footer: true +--- + +This new platform can control your LimitlessLED lights from within Home Assistant. The lights are also known as EasyBulb, AppLight, AppLamp, MiLight, LEDme, dekolight or iLight. + +``` +# Example configuration.yaml entry +light: + platform: limitlessled + host: 192.168.1.10 + group_1_name: Living Room + group_2_name: Bedroom + group_3_name: Office + group_4_name: Kitchen +``` diff --git a/source/components/switch.command_switch.markdown b/source/components/switch.command_switch.markdown new file mode 100644 index 00000000000..0656efd0365 --- /dev/null +++ b/source/components/switch.command_switch.markdown @@ -0,0 +1,22 @@ +--- +layout: page +title: "Command line switches support" +description: "Instructions how to have a switch call command line commands." +date: 2015-06-10 22:41 +sidebar: false +comments: false +sharing: true +footer: true +--- + +A switch platform that issues specific commands when it is turned on and off. This might very well become our most platform as it allows anyone to integrate any type of switch into Home Assistant that can be controlled from the command line, including calling other scripts! + +``` +# Example configuration.yaml entry +switch: + platform: command_switch + switches: + - kitchen_light: + oncmd: switch_command on kitchen + offcmd: switch_command off kitchen +``` diff --git a/source/components/switch.hikvision.markdown b/source/components/switch.hikvision.markdown new file mode 100644 index 00000000000..cb5f1d620c6 --- /dev/null +++ b/source/components/switch.hikvision.markdown @@ -0,0 +1,22 @@ +--- +layout: page +title: "Hikvision camera support" +description: "Instructions how to integrate Hikvision camera's into Home Assistant." +date: 2015-06-10 22:54 +sidebar: false +comments: false +sharing: true +footer: true +--- + +This switch platform allows you to control your motion detection setting on your Hikvision camera. + +``` +# Example configuration.yaml entry +switch: + platform: hikvisioncam + name: Hikvision Cam 1 Motion Detection + host: 192.168.1.26 + username: YOUR_USERNAME + password: YOUR_PASSWORD +``` diff --git a/source/images/screenshots/media_player-card.png b/source/images/screenshots/media_player-card.png new file mode 100644 index 00000000000..7dcddeb1909 Binary files /dev/null and b/source/images/screenshots/media_player-card.png differ