Page 1 of 1

How to set on/off temp for fan

Posted: Sun Apr 01, 2012 9:04 pm
by symon_say
I want to set a temp to turn on/off my fan, i try this code, but is not working, i have the temp set to celcius on the controller, so maybe this is the problem.

Code: Select all

ReefAngel.StandardFan(Port4,806,824);
I want the fan to turn on at 28 and off at 27.

Re: How to set on/off temp for fan

Posted: Sun Apr 01, 2012 9:09 pm
by rimai
Try this:

Code: Select all

ReefAngel.StandardFan(Port4,270,280);

Re: How to set on/off temp for fan

Posted: Sun Apr 01, 2012 9:21 pm
by symon_say
That work, i read somewhere that i had to put temp in Fahrenheit.

Re: How to set on/off temp for fan

Posted: Tue Apr 03, 2012 6:54 pm
by binder
symon_say wrote:That work, i read somewhere that i had to put temp in Fahrenheit.
The functions work in whatever temperature you are using the controller. If you use F, then the temps should be in F. If you use C, then the temps should be in C.