Apex programming assistance

Rgbpixels

Non-member
Hello,

I have 3 gen4 radions that I control through my reeflink, but my power is connected to my apex so I can shut them down due to temp issues. I want the power outlets to always be on unless the temp gets above 81. Does this programming look correct:

Fallback ON
Set OFF
If Tmp > 81.0 Then OFF
If Tmp < 80 then ON








Sent from my iPhone using Tapatalk
 
Hello,

I have 3 gen4 radions that I control through my reeflink, but my power is connected to my apex so I can shut them down due to temp issues. I want the power outlets to always be on unless the temp gets above 81. Does this programming look correct:

Fallback ON
Set OFF
If Tmp > 81.0 Then OFF
If Tmp < 80 then ON








Sent from my iPhone using Tapatalk

It's been a while and I may be over complicating it however I think what you are asking for would look more like this:

Fallback ON
Set ON
If Tmp > 80.9 Then OFF
If Tmp < 81 then ON

----

The way you have it now the on/off states would be like this:

@ 80 off
83 to 82 off
82 to 81 off
81 to 80 off
80 to 79.9 off


@78 ON
@ 79.9 ON
78:79.9 ON

-----
 
Someone else may need to chime in too because the manual says it isn't recommended to use the SET statement when using probe values to turn outlets on and off. Something like this may also cause some flickering?
 
You don't need to use Set. Just fallback to off, if temp < xx then on, if temp > xx then off. Put in some defer time to prevent heater on/off too often.


Sent from my iPhone using Tapatalk Pro
 
Upcoming Events

April 21, 2024
Paul B
Club Meeting

Back
Top