From dd5a1767a2b6633bfcc16c6db3ce69b1965ff15c Mon Sep 17 00:00:00 2001 From: Carlo Costanzo Date: Tue, 20 Dec 2016 02:24:47 -0500 Subject: [PATCH] Clarification time. (#1598) Just some clarification based on https://github.com/home-assistant/home-assistant/issues/4904#issuecomment-267426303 --- source/getting-started/automation-trigger.markdown | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/source/getting-started/automation-trigger.markdown b/source/getting-started/automation-trigger.markdown index f47c0a1c695..79bbf3681fa 100644 --- a/source/getting-started/automation-trigger.markdown +++ b/source/getting-started/automation-trigger.markdown @@ -113,7 +113,7 @@ automation: platform: time # Matches every hour at 5 minutes past whole minutes: 5 - seconds: 0 + seconds: 00 automation 2: trigger: @@ -127,8 +127,11 @@ automation 3: platform: time # You can also match on interval. This will match every 5 minutes minutes: '/5' - seconds: 0 + seconds: 00 ``` +

+ Rememebr that if you are using matching to include both `minutes` and `seconds`. Without `seconds`, your automation will trigger 60 times during the matching minute. +

### {% linkable_title Zone trigger %}