Merge branch 'current' into next

This commit is contained in:
Paulus Schoutsen 2017-01-15 08:54:16 -08:00
commit c88b3a1b8d
6 changed files with 75 additions and 5 deletions

View file

@ -55,6 +55,7 @@ service: tts.google_say
data:
message: 'May the Force be with you.'
```
Say to the `media_player.floor` device entitie:
```yaml
service: tts.google_say
@ -63,6 +64,16 @@ data:
message: 'May the Force be with you.'
```
Say to the `media_player.floor` device entitie in french:
```yaml
service: tts.google_say
entity_id: media_player.floor
data:
message: 'Que la force soit avec toi.'
language: 'fr'
```
With a template:
```yaml