Temp probe to trigger
- DrewPalmer04
- Posts: 818
- Joined: Tue May 29, 2012 2:12 pm
- Location: Christopher, IL
Temp probe to trigger
Is it a smart idea to have a temp prove trigger the return pump (relay 8) to turn it off? My home stays a constant 70 degrees. Thus I will have a probe in the emergency overflow PVC and once it reaches 77.5 (tank temp) it will turn off the return pump.
If so, code please?
If so, code please?
- jsclownfish
- Posts: 375
- Joined: Mon Oct 24, 2011 7:52 pm
- Location: Saint Louis
Re: Temp probe to trigger
I use an ATO switch like this. It is a safety switch for a clogged return from a snail or debris problem. Depending on your pump, I don't know if the temp response would be fast enough. Otherwise it should work in principle.
Jon
Jon
- DrewPalmer04
- Posts: 818
- Joined: Tue May 29, 2012 2:12 pm
- Location: Christopher, IL
Re: Temp probe to trigger
I would set the off to 74.0 as the home never gets that hot
- DrewPalmer04
- Posts: 818
- Joined: Tue May 29, 2012 2:12 pm
- Location: Christopher, IL
Re: Temp probe to trigger
So...
if (ReefAngel.Params.Temp[T2_PROBE]()<740) ReefAngel.Relay.Off(Port8));
else
ReefAngel.Relay.On(Port8);
??
if (ReefAngel.Params.Temp[T2_PROBE]()<740) ReefAngel.Relay.Off(Port8));
else
ReefAngel.Relay.On(Port8);
??
-
rimai
- Posts: 12857
- Joined: Fri Mar 18, 2011 6:47 pm
- DrewPalmer04
- Posts: 818
- Joined: Tue May 29, 2012 2:12 pm
- Location: Christopher, IL
Re: Temp probe to trigger
Haha thanks Roberto...
I wasn't too lazy to do it this time haha
I wasn't too lazy to do it this time haha
- DrewPalmer04
- Posts: 818
- Joined: Tue May 29, 2012 2:12 pm
- Location: Christopher, IL
Re: Temp probe to trigger
Well crap. Should be > not <740
-
rimai
- Posts: 12857
- Joined: Fri Mar 18, 2011 6:47 pm
Re: Temp probe to trigger
no, it is correct.
you just got some extra () in there
you just got some extra () in there
Code: Select all
if (ReefAngel.Params.Temp[T2_PROBE]<740)
ReefAngel.Relay.Off(Port8);
else
ReefAngel.Relay.On(Port8);
Roberto.
- DrewPalmer04
- Posts: 818
- Joined: Tue May 29, 2012 2:12 pm
- Location: Christopher, IL
Re: Temp probe to trigger
So if probe less than 74.0 relay 8 off. Else On
I need if probe reads greater than 74.0 relay 8 off. Else on
I need if probe reads greater than 74.0 relay 8 off. Else on
-
rimai
- Posts: 12857
- Joined: Fri Mar 18, 2011 6:47 pm
Re: Temp probe to trigger
yeah, you are right!!
Why do you listen to me?
Go ahead and do it already
Why do you listen to me?
Go ahead and do it already
Roberto.
- DrewPalmer04
- Posts: 818
- Joined: Tue May 29, 2012 2:12 pm
- Location: Christopher, IL
Re: Temp probe to trigger
Hahahaha. I was confusing myself. Not your fault. Hopefully I'll never have to see this work anyway. It's for emergencies anyway