From 0a91cb5f8dc42cb9769da22fdd23f72cd4ffda88 Mon Sep 17 00:00:00 2001 From: DavidFW1960 <36390762+DavidFW1960@users.noreply.github.com> Date: Wed, 13 Mar 2019 10:41:58 +1100 Subject: [PATCH] Update initial_states (#8923) Edited to show true/false instead of on/off --- source/_components/automation.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_components/automation.markdown b/source/_components/automation.markdown index 6c22f3f5e17..cc51419025d 100644 --- a/source/_components/automation.markdown +++ b/source/_components/automation.markdown @@ -25,14 +25,14 @@ Starting with 0.28 your automation rules can be controlled with the frontend. This allows one to reload the automation without restarting Home Assistant itself. If you don't want to see the automation rule in your frontend use `hide_entity: true` to hide it. -You can also use `initial_state: 'off'` so that the automation +You can also use `initial_state: 'false'` so that the automation is not automatically turned on after a Home Assistant reboot. ```yaml automation: - alias: Door alarm hide_entity: true - initial_state: 'off' + initial_state: 'true' trigger: - platform: state ...