Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/configuration/rules-dsl.md
Original file line number Diff line number Diff line change
Expand Up @@ -1143,15 +1143,15 @@ then
end

// increase the counter at midnight
rule "Increase counter"
rule "Increase counter" [Schedule]
when
Time cron "0 0 0 * * ?"
then
counter = counter + 1
end

// tell the number of days either at noon or if a button is pressed
rule "Announce number of days up"
rule "Announce number of days up" [Schedule]
when
Time is noon or
Item AnnounceButton received command ON
Expand Down