Skip to content
caiosweet edited this page Nov 10, 2022 · 2 revisions

Examples Google

(Google Boolean option) Activate google: TTS and send the same message as the text notifications

service: script.my_notify
data:
  message: Message for text and google
  google: true

(Google Dictonary options) Send a custom message for multiple Google player and set volume

service: script.my_notify
data:
  google:
    message_tts: test more Google.
    media_player: media_player.red,media_player.black2
    volume: 0.5

Send separate messages for TTS and Text notifications

service: script.my_notify
data:
  notify: telegram
  message: Message only for telegram
  google:
    message_tts: Message only for Google.
    media_player: media_player.red
    volume: 0.6

Activate google: and send a custom message only for Google

service: script.my_notify
data:
  notify: 0
  google:
    message_tts: Speek only Google.
    volume: 0.6
service: script.my_notify
data:
  notify: 0
  message: Speek only Google.
  google: true
Clone this wiki locally