mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-25 18:26:56 +00:00
Merge branch 'current' into next
This commit is contained in:
commit
09cd04ee79
2
Gemfile
2
Gemfile
@ -21,7 +21,7 @@ group :jekyll_plugins do
|
|||||||
end
|
end
|
||||||
|
|
||||||
gem 'sinatra', '2.1.0'
|
gem 'sinatra', '2.1.0'
|
||||||
gem 'nokogiri', '1.11.4'
|
gem 'nokogiri', '1.11.5'
|
||||||
|
|
||||||
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
|
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
|
||||||
# and associated library
|
# and associated library
|
||||||
|
@ -74,10 +74,10 @@ GEM
|
|||||||
multi_json (1.15.0)
|
multi_json (1.15.0)
|
||||||
mustermann (1.1.1)
|
mustermann (1.1.1)
|
||||||
ruby2_keywords (~> 0.0.1)
|
ruby2_keywords (~> 0.0.1)
|
||||||
nokogiri (1.11.4)
|
nokogiri (1.11.5)
|
||||||
mini_portile2 (~> 2.5.0)
|
mini_portile2 (~> 2.5.0)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
nokogiri (1.11.4-x64-mingw32)
|
nokogiri (1.11.5-x64-mingw32)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
pathutil (0.16.2)
|
pathutil (0.16.2)
|
||||||
forwardable-extended (~> 2.6)
|
forwardable-extended (~> 2.6)
|
||||||
@ -130,7 +130,7 @@ DEPENDENCIES
|
|||||||
jekyll-sitemap (= 1.4.0)
|
jekyll-sitemap (= 1.4.0)
|
||||||
jekyll-time-to-read (= 0.1.2)
|
jekyll-time-to-read (= 0.1.2)
|
||||||
jekyll-toc (= 0.17.1)
|
jekyll-toc (= 0.17.1)
|
||||||
nokogiri (= 1.11.4)
|
nokogiri (= 1.11.5)
|
||||||
rake (= 13.0.3)
|
rake (= 13.0.3)
|
||||||
sass-globbing (= 1.1.5)
|
sass-globbing (= 1.1.5)
|
||||||
sassc (= 2.1.0)
|
sassc (= 2.1.0)
|
||||||
|
@ -57,7 +57,7 @@ port:
|
|||||||
default: 7094
|
default: 7094
|
||||||
type: integer
|
type: integer
|
||||||
code:
|
code:
|
||||||
description: The INTEGRA ID (found in DLOADX under "Communication configuration" or in polish "Komunikacja Konfiguracji" section), it's needed for making use of the switchable_outputs.
|
description: User password, it's needed for making use of the switchable_outputs. It's recommended not to use admin password.
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
partitions:
|
partitions:
|
||||||
|
@ -110,26 +110,26 @@ Say to all `media_player` device entities:
|
|||||||
```yaml
|
```yaml
|
||||||
# Replace google_translate_say with <platform>_say when you use a different platform.
|
# Replace google_translate_say with <platform>_say when you use a different platform.
|
||||||
service: tts.google_translate_say
|
service: tts.google_translate_say
|
||||||
entity_id: "all"
|
|
||||||
data:
|
data:
|
||||||
message: "May the Force be with you."
|
entity_id: all
|
||||||
|
message: "May the force be with you."
|
||||||
```
|
```
|
||||||
|
|
||||||
Say to the `media_player.floor` device entity:
|
Say to the `media_player.floor` device entity:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
service: tts.google_translate_say
|
service: tts.google_translate_say
|
||||||
entity_id: media_player.floor
|
|
||||||
data:
|
data:
|
||||||
message: "May the Force be with you."
|
entity_id: media_player.floor
|
||||||
|
message: "May the force be with you."
|
||||||
```
|
```
|
||||||
|
|
||||||
Say to the `media_player.floor` device entity in French:
|
Say to the `media_player.floor` device entity in French:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
service: tts.google_translate_say
|
service: tts.google_translate_say
|
||||||
entity_id: media_player.floor
|
|
||||||
data:
|
data:
|
||||||
|
entity_id: media_player.floor
|
||||||
message: "Que la force soit avec toi."
|
message: "Que la force soit avec toi."
|
||||||
language: "fr"
|
language: "fr"
|
||||||
```
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user