WATCHDOG TIMER

Share you PDE file with our community
Post Reply
grafspee1217
Posts: 84
Joined: Sun Mar 11, 2012 10:38 am

WATCHDOG TIMER

Post by grafspee1217 »

Is the watchdog timer enabled by default?
Sebyte

Re: WATCHDOG TIMER

Post by Sebyte »

No it is not.

You need to use something like this.

Code: Select all

  // Activate Watch Dog Timer at 6am and 6pm 

  if ((now()%86400)==21600) delay(1000);

  if ((now()%86400)==43200) delay(1000);
grafspee1217
Posts: 84
Joined: Sun Mar 11, 2012 10:38 am

Re: WATCHDOG TIMER

Post by grafspee1217 »

I occasionally have problems with my reef angel doing weird things. The outlet for my protein skimmer will shut down then start back up after a few minutes. I also have my lights turn on then off for a second when they are programmed to be off. If I unplug the reef angel then plug it back in it seems to correct it for a while. I was wondering if enabling the watchdog timer would accomplish the same thing.
Post Reply