Days of the month vs Days of the week automation on HAI Omni Pro II

hooman00

Member
Hi,
 
This may sound stupid.. but for life of me I cannot program my HAI (now Leviton) Omni Pro II to set off my sprinkler system on odd days of the month..(i.e., 1, 3, 5 .......) instead when I trigger the event by "Time" it only gives me options to select Days of the week..(Mon, Tues...)
 
Is there any where else I need to look at? All firmware seems to be updated..
 
 
Thanks
 
Hooman
 
You can use an AND IF conditional.

For instance if you want to turn on the sprinklers at 6 AM on odd days.

Code:
TIMED 6:00 AM MTWTFSS
    AND IF DAY IS ODD
        THEN Sprinklers ON
 
OH I got it!!!
 
I have to set the Days of the week first! Then in the IF statement there is option for Days of the month.. Thank YOU Desert_AIP
 
The WHEN statement above triggers eevry day at 6 AM.
Every day at 6 AM it checks to see if the current day is ODD,
If true, then it executes the actions.
 
If you want to use evey other odd day or something more complicated, using a flag and toggling it on and off or incrementing and decrementing it would be the way to go.
 
Back
Top