diff --git a/source/_components/alexa.markdown b/source/_components/alexa.markdown index 027a08a2003..747bef9a8e8 100644 --- a/source/_components/alexa.markdown +++ b/source/_components/alexa.markdown @@ -270,8 +270,8 @@ First create a file called `alexa_confirm.yaml` with something like the followin {% raw %} > {{ [ - "OK", - "Sure", + "OK", + "Sure", "If you insist", "Done", "No worries", diff --git a/source/_components/camera.local_file.markdown b/source/_components/camera.local_file.markdown index 02eddc7bebc..2cfff50676a 100644 --- a/source/_components/camera.local_file.markdown +++ b/source/_components/camera.local_file.markdown @@ -15,7 +15,7 @@ ha_release: 0.22 The `local_file` camera platform allows you to integrate any readable image file from disk into Home Assistant as a camera. If the image is updated on the file system the image displayed in Home Assistant will also be updated. -This can for example be used with various camera platforms that save a temporary images localy. +This can for example be used with various camera platforms that save a temporary images locally. It can also be used to display a graph that you render periodacally and will then be displayed in Home Assistant. To enable this camera in your installation, add the following to your `configuration.yaml` file: @@ -31,7 +31,7 @@ Configuration variables: - **name** (*Optional*): Name of the camera - **file_path** (*Required*): File to serve as the camera. - +

The given `file_path` must be an existing file because the camera platform setup make a readable check on it.

diff --git a/source/_components/media_player.sonos.markdown b/source/_components/media_player.sonos.markdown index b2db3341a49..8c0cf0d79df 100644 --- a/source/_components/media_player.sonos.markdown +++ b/source/_components/media_player.sonos.markdown @@ -13,7 +13,6 @@ featured: true ha_release: 0.7.3 --- - The `sonos` platform allows you to control your [Sonos](http://www.sonos.com) HiFi wireless speakers and audio components from Home Assistant. To add your Sonos components to your installation, add the following to your `configuration.yaml` file. It will perform auto-discovery of your connected speakers. @@ -33,3 +32,8 @@ media_player: hosts: IP ``` +### {% linkable_title Service %} + +There are two extra services exposed that will allow you to take a snapshot of what is currently playing and restore it afterwards. This is useful if you want to play a doorbell or notification sound and resume playback afterwards. + +The services are called `sonos_snapshot` and `snapshot_restore`. diff --git a/source/_components/shell_command.markdown b/source/_components/shell_command.markdown index 1783c8a2980..b77b1101da2 100644 --- a/source/_components/shell_command.markdown +++ b/source/_components/shell_command.markdown @@ -27,7 +27,9 @@ Configuration variables: - Alias for the command - Command itself. -The commands can be dynamic, using templates to insert values of other entities. For example +The commands can be dynamic, using templates to insert values of other entities. When using templates you are limited to only template the arguments. You are also no longer allowed to use pipe symbols when using templates. + +Any service data passed into the service call to activate the shell command will be available as a variable within the template. ```yaml # Apply value of a GUI slider to the shell_command diff --git a/source/_includes/site/head.html b/source/_includes/site/head.html index abe099c7272..5371a1bbbfa 100644 --- a/source/_includes/site/head.html +++ b/source/_includes/site/head.html @@ -1,6 +1,6 @@ {% capture fb_description %}{% if page.description %}{{ page.description }}{% endif %}{% endcapture %} {% capture description %}{% if page.description %}{{ page.description }}{% else site.description %}{{ site.description }}{% endif %}{% endcapture %} -{% capture social_image %}{% if page.og_image %}{{ page.og_image | prepend: site.url }}{% else %}https://home-assistant.io/images/home-assistant-logo-2164x2164.png{% endif %}{% endcapture %} +{% capture social_image %}{% if page.og_image %}{{ page.og_image | prepend: site.url }}{% else %}https://home-assistant.io/images/default-social.png{% endif %}{% endcapture %} diff --git a/source/_posts/2016-06-18-pandora-bt-home-hub-5-and-local-file-camera.markdown b/source/_posts/2016-06-18-pandora-bt-home-hub-5-and-local-file-camera.markdown new file mode 100644 index 00000000000..e2ace3e1c20 --- /dev/null +++ b/source/_posts/2016-06-18-pandora-bt-home-hub-5-and-local-file-camera.markdown @@ -0,0 +1,74 @@ +--- +layout: post +title: "0.22: Pandora, BT Home Hub 5 and local file camera." +description: "This new release of Home Assistant has been mainly about stabilizing our last release which included a lot of core improvements. We're all stable now and set for a bright future." +date: 2016-06-18 18:06:00 +0000 +date_formatted: "June 18, 2016" +author: Paulus Schoutsen +author_twitter: balloob +comments: true +categories: Release-Notes +--- + +It's time for the 0.22 release. This was a pretty rough release cycle and we had to issue two hot fixes for our core improvements. But it seems now that all is good and a lot of people have reported that their installs are faster than ever and the occasional quirks no longer occur. + +We are aware that our new web stack has caused issues installing Home Assistant on ARM-based platforms. This sadly includes the Raspberry Pi and Synology NAS systems. We're working on getting to a better solution. For Raspberry Pi, the [All-in-One installer] will take care of everything for you. We're working on updating our [standalone Raspberry Pi installation guide]. + +There are two cool things that I want to highlight in this release. The first is Pandora support. This is based on the CLI player called pianobar. This means that your machine running Home Assistant can be connected to the speakers and provide your house with tunes. + +

+ +

+ +Another cool addition is the local file camera. This seems very basic at first but will allow you to generate a graph with your favorite 3rd party graphing tool and display it on your Home Assistant dashboard. We're looking forward to see what you can do with this! + + + +- Media Player: [Pandora] media player now supported ([@partofthething]) +- Device Tracker: [BT Home Hub 5] now supported ([@lwis]) +- Camera: New [local file] platform shows any image as camera ([@Landrash]) +- Add [Sonos] snapshot and restore services ([@dansullivan86]) +- Device Tracker: [AsusWRT] in Access Point mode now supported ([@linjef]) +- Device Tracker: [AsusWRT] login using public key now supported ([@mtreinish]) +- Device Tracker: [AsusWRT] protocol to use is now auto detected ([@persandstrom]) +- Camera: [Netatmo] now supported ([@jabesq]) +- API documentation added in [Swagger.yaml format] ([@wind-rider]) +- Media Player: [Cast] devices can now be stopped ([@michaelarnauts]) +- MySensors: [IR switch device] and service now supported ([@MartinHjelmare]) +- Bloomsky: [Voltage sensor] now supported ([@arsaboo]) +- Sensor: New [Plex sensor] monitors friends streaming from your Plex server ([@nkgilley]) +- Component [shell command] can now use templates to render arguments ([@partofthething]) +- Rollershutter: [Wink] is now supported ([@philk]) +- Alexa: Updated [documentation][alexa] to show how to call scripts and scenes (@acockburn) + +[@acockburn]: https://github.com/acockburn/ +[@arsaboo]: https://github.com/arsaboo/ +[@dansullivan86]: https://github.com/dansullivan86/ +[@jabesq]: https://github.com/jabesq/ +[@Landrash]: https://github.com/Landrash/ +[@linjef]: https://github.com/linjef/ +[@lwis]: https://github.com/lwis/ +[@MartinHjelmare]: https://github.com/MartinHjelmare/ +[@michaelarnauts]: https://github.com/michaelarnauts/ +[@mtreinish]: https://github.com/mtreinish/ +[@nkgilley]: https://github.com/nkgilley/ +[@partofthething]: https://github.com/partofthething/ +[@persandstrom]: https://github.com/persandstrom/ +[@philk]: https://github.com/philk/ +[@wind-rider]: https://github.com/wind/ +[AsusWRT]: /components/device_tracker.asuswrt/ +[BT Home Hub 5]: /components/device_tracker.bt_home_hub_5/ +[Cast]: /components/media_player.cast/ +[IR switch device]: /components/mysensors/ +[local file]: /components/camera.local_file/ +[Netatmo]: /components/netatmo/ +[Pandora]: /components/media_player.pandora/ +[shell command]: /components/shell_command/ +[Sonos]: /components/media_player.sonos/ +[Wink]: /components/rollershutter.wink/ +[alexa]: /components/alexa/#working-with-scenes +[Plex sensor]: /components/sensor.plex/ +[Swagger.yaml format]: https://github.com/home-assistant/home-assistant/blob/dev/docs/swagger.yaml +[All-in-One installer]: /getting-started/installation-raspberry-pi-all-in-one/ +[standalone Raspberry Pi installation guide]: /getting-started/installation-raspberry-pi/ +[Voltage sensor]: /components/sensor.bloomsky/ diff --git a/source/images/default-social.png b/source/images/default-social.png new file mode 100644 index 00000000000..377a667d157 Binary files /dev/null and b/source/images/default-social.png differ diff --git a/source/index.html b/source/index.html index 3c0ddf5b551..35829381f62 100644 --- a/source/index.html +++ b/source/index.html @@ -15,9 +15,9 @@ hide_github_edit: true