Add 0.7.3 release blog

This commit is contained in:
Paulus Schoutsen 2015-09-19 23:32:55 -07:00
parent 6beb7b04ef
commit 6c09aee7de
6 changed files with 94 additions and 28 deletions

View file

@ -17,7 +17,7 @@ A configuration section of an automation requires a `trigger` and an `action` se
full configuration but only the relevant part.
```yaml
# Example of a full entry in configuration.yaml
# Example of entry in configuration.yaml
automation:
alias: Light on in the evening
trigger:
@ -32,8 +32,8 @@ automation:
entity_id: group.all_devices
state: home
- platform: time
after: 16:00:00
before: 23:00:00
after: "16:00:00"
before: "23:00:00"
action:
service: homeassistant.turn_on
entity_id: group.living_room
@ -101,12 +101,12 @@ automation:
platform: state
entity_id: device_tracker.paulus
# Optional
from: not_home
to: home
from: "not_home"
to: "home"
```
<p class='note'>
Use quotes around your values for <code>state_from</code> and <code>state_to</code> to avoid the YAML parser interpreting some values as booleans.
Use quotes around your values for <code>from</code> and <code>to</code> to avoid the YAML parser interpreting some values as booleans.
</p>
#### {% linkable_title Sun trigger %}
@ -135,7 +135,7 @@ automation:
# All following are optional.
# When 'after' is used, you cannot also match on hour, minute, seconds.
# Military time format.
after: 15:32:00
after: "15:32:00"
hours: 10
minutes: 5
seconds: 0
@ -199,8 +199,8 @@ automation:
condition:
platform: time
# At least one of the following is required.
after: 15:00:00
before: 23:00:00
after: "15:00:00"
before: "23:00:00"
weekday:
- mon
- wed

View file

@ -10,21 +10,14 @@ footer: true
---
<img src='/images/supported_brands/itunes.png' class='brand pull-right' />
The iTunes platform allows you to control [iTunes](http://apple.com/itunes/) via
[itunes-api](https://github.com/maddox/itunes-api) from Home Assistant. Play,
pause, or skip songs remotely on iTunes running on your Mac.
The iTunes platform allows you to control [iTunes](http://apple.com/itunes/) from Home Assistant.
It uses a 3rd party server that you run on your Mac called
[itunes-api](https://github.com/maddox/itunes-api). Play, pause, or skip songs remotely on iTunes
running on your Mac.
Your AirPlay speakers will also be exposed as simple media players inside Home
Assistant. They will be available to be turned on or off or set their volume.
<p class='note'>
iTunes itself can not be remotely controlled. In order to control your iTunes,
you'll need to install middleware named itunes-api. itunes-api is a simple REST
server that talks to a local instance of iTunes via Applescript. It's very easy to set up
and run. You can find more about it on it's [GitHub repo](https://github.com/maddox/itunes-api).
</p>
To add iTunes to your installation, add the following to your `configuration.yaml` file:
```

View file

@ -9,7 +9,7 @@ sharing: true
footer: true
---
<img src='/images/supported_brands/denon.png' class='brand pull-right' />
<img src='/images/supported_brands/sonos.png' class='brand pull-right' />
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.