Page 1 of 1
Wifi reconnect?
Posted: Wed Apr 01, 2015 8:14 am
by paperdesk
My wifi turns off each night. The RA does not automatically reconnect when it turns on again. Is there a way to make it do that? If not, is there a way to make it automatically reboot at a certain time?
Ted
Re: Wifi reconnect?
Posted: Wed Apr 01, 2015 11:52 am
by binder
paperdesk wrote:My wifi turns off each night. The RA does not automatically reconnect when it turns on again. Is there a way to make it do that? If not, is there a way to make it automatically reboot at a certain time?
Ted
You could make the controller reboot at a certain time. I took this from another topic:
This reboots the controller at 10am daily. If you wanted it to occur at 3 am, just change the hour()==10 to hour()==3
Code: Select all
if (hour()==10 && minute()==0 && second()==0) while(1);
Here's where I got it from:
http://forum.reefangel.com/viewtopic.ph ... oot#p45572
Re: Wifi reconnect?
Posted: Wed Apr 01, 2015 12:08 pm
by paperdesk
Nice, I'll try that tonight!