From ad6cd6dd33fc10490a1897dcb77c50ae56df2190 Mon Sep 17 00:00:00 2001 From: austinmroczek Date: Mon, 11 Feb 2019 15:51:09 -0800 Subject: [PATCH] Update tts.markdown (#8394) Per warning from helpers/service.py: Not passing an entity ID to a service to target all entities is deprecated. Use instead: entity_id: "all" Tested in 0.86.2 --- source/_components/tts.markdown | 1 + 1 file changed, 1 insertion(+) diff --git a/source/_components/tts.markdown b/source/_components/tts.markdown index 364a2af27ec..3d4fceac5d4 100644 --- a/source/_components/tts.markdown +++ b/source/_components/tts.markdown @@ -94,6 +94,7 @@ Say to all `media_player` device entities: ```yaml # Replace google_say with _say when you use a different platform. service: tts.google_say +entity_id: "all" data: message: 'May the Force be with you.' ```