08-18-2009 02:51 PM
Solved! Go to Solution.
08-18-2009 03:01 PM
08-18-2009 03:05 PM - edited 08-18-2009 03:06 PM
Try this.
08-18-2009 05:06 PM
I accidently clicked solution, but it really wasn't. What Raven's fan sent me was helpful (thank you), but the more difficult problem is how to handle the on/off scenario when the temperature is between 40 and 35. To be more specific, if the temperature just passes below 40 but isn't to 35 quite yet, the fan should still be on. On the flip side, if the the temp is just passing above 35 but not quite to 40, the fan should be off. In other words, the temperature ban between 35 and 40 should be hysteresis. I can't find any examples that do something like this.
08-18-2009 06:51 PM
08-18-2009 07:12 PM - edited 08-18-2009 07:14 PM
Did you try what I posted? In the range of 35 to 40, the fan is in whatever state is has been in (as stored in the shift register). If it goes above 40, then it forces it on. If it goes below 35, it forces it off. The only thing that you may want to do differently is to use greater than/equal to and less than/equal to instead of just greater than and just less than. What I posted does exactly what you describe.
08-24-2009 11:35 AM