Back-up Heater

Do you have a question on how to do something.
Ask in here.
Post Reply
User avatar
jsclownfish
Posts: 378
Joined: Mon Oct 24, 2011 7:52 pm
Location: Saint Louis

Back-up Heater

Post by jsclownfish »

So I've written my first code (trying not to strain myself patting my own back). It seems to work well, except one thing. I have two heaters on the sytem in case one fails. I set them up to go on at two different temps in case the first failed or it got really cold. Probelm is it only works once in awhile, mostly both heaters are on before the temp drops to the lower point. It is a pretty basic pde started from RAGen with the latest Dev libraries. The only 'extra' is the buzzer set to go off it the temp gets too high (thanks Roberto for the help on that one).

Is there a problem in the code or logic? Thanks.
RA_110411_1908_Current.pde
(2.25 KiB) Downloaded 421 times
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: Back-up Heater

Post by rimai »

What is the temperature you want to keep your tank at?
Roberto.
User avatar
jsclownfish
Posts: 378
Joined: Mon Oct 24, 2011 7:52 pm
Location: Saint Louis

Re: Back-up Heater

Post by jsclownfish »

I usually have to keep it warm in at about 79F due to the heat from the MH lamps. I plan to add a chiller at some point later to bring the temperature down.

-Jon
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: Back-up Heater

Post by rimai »

Try changing this:

Code: Select all

    ReefAngel.StandardHeater(Port1,788,792);
    ReefAngel.StandardHeater(Port2,770,792);
To this:

Code: Select all

    ReefAngel.StandardHeater(Port1,788,792);
    ReefAngel.StandardHeater(Port2,770,788);
Roberto.
Post Reply