Apex users I have some programming questions

Apex users I have some programming questions

Oddly enough, one of the limitations of the apex is that it doesn't have a way to do "œEvery other day". If this is a short term thing and your trip will be less than a week you can use the IF DOW command to only run your command on certain days of the week.

For example, you would schedule it to dose 35ml every day, but then edit the program and at the bottom add:

IF DOW -M-W-F- THEN OFF

That will only allow the program to only run on Sunday, Tuesday, Thursday, and Saturday. Which will effectively get you an every other day schedule, but since there are an odd number of days in the week, at the weekend it will dose on both Saturday and Sunday, so you would get a double dose there.

I suppose if you needed to go longer than a week you could edit the program at the end of the first week and then switch it to:

IF DOW S-T-T-S THEN OFF

Which would reverse the schedule for the following week and keep it on an every other day schedule.

Definitely not a great solution, but since this is just a temporary thing it might work for you.
 
Back
Top