Post Programing?

Comtek

New member
how am i able to get my complete program so that i can post it so someone can look it over for me.
do i need to go into each outlet and profile to copy it or is there a shorter easier way?
 
Look at Reeftronics home page. Russ made a utility to do that. It's on the right side of the page. You can also import that XML data into an Excel file using the 'data' function in Excel if you know how to do that but Russ's tool is the easiest.
 
RBlue_LED
Fallback ON
Set OFF
If Time 10:00 to 14:00 Then BRampUp
If Time 14:00 to 18:00 Then BCloud
If Time 18:00 to 22:00 Then BRampDwn
If Time 22:00 to 10:00 Then BNight
If MainTmp > 82.0 Then OFF

White_LED
Fallback ON
Set OFF
If Time 11:00 to 14:00 Then WRampUp
If Time 14:00 to 16:00 Then WCloud
If Time 16:00 to 19:00 Then WRampDwn
If Time 19:00 to 12:00 Then WNight
If MainTmp > 82.0 Then OFF

SndAlm_I6
Set OFF
If Switch3 OPEN Then ON
If Switch4 OPEN Then ON
If Switch5 OPEN Then ON

SndWrn_I7
Set OFF

EmailAlm_I5
Set OFF
If MainTmp > 82.0 Then ON
If MainTmp < 75.0 Then ON

Return_1
Fallback OFF
Set ON
If Switch5 OPEN Then OFF

Skimmer_2
Fallback OFF
Set ON
If Outlet Return_1 = OFF Then OFF
If Switch3 OPEN Then OFF
If Switch4 OPEN Then OFF
If FeedD 005 Then OFF

SumpLight_3
Fallback OFF
Set OFF
If Time 22:00 to 10:00 Then ON
If MainTmp > 82.0 Then OFF
Min Time 030:00 Then OFF

OldSWout_4
Fallback OFF
If DoW SM-W-F- Then ON
If Time 17:05 to 17:00 Then OFF
If Switch1 OPEN Then OFF

Heater_5
Fallback OFF
Set OFF
If MainTmp > 80.0 Then OFF
If MainTmp < 77.8 Then ON
If MainTmp > 78.0 Then OFF

Chiller_6
Fallback OFF
Set OFF
If MainTmp < 75.0 Then OFF
If MainTmp > 78.2 Then ON
If MainTmp < 78.0 Then OFF
If Outlet Return_1 = OFF Then OFF

ATO_7
Fallback OFF
Set OFF
If Switch2 CLOSED Then OFF
If Switch2 OPEN Then ON
If Switch4 OPEN Then OFF
If Outlet OldSWout_4 = ON Then OFF
If Outlet NewSWin_8 = ON Then OFF
Defer 015:00 Then ON

NewSWin_8
Fallback OFF
If DoW SM-W-F- Then ON
If Time 17:10 to 17:05 Then OFF
If Switch2 CLOSED Then OFF

name WRampUp
type ramp
rampTime 180
startIntensity 10
endIntensity 45

name WRampDwn
type ramp
rampTime 180
startIntensity 45
endIntensity 10

name BRampUp
type ramp
rampTime 240
startIntensity 10
endIntensity 50

name BRampDwn
type ramp
rampTime 240
startIntensity 50
endIntensity 10

name BCloud
type weather
minIntensity 30
maxIntensity 60
cloudDuration 1
cloudyPercent 30

name BNight
type weather
minIntensity 10
maxIntensity 15
cloudDuration 5
cloudyPercent 50

name WCloud
type weather
minIntensity 20
maxIntensity 45
cloudDuration 1
cloudyPercent 30

name WNight
type weather
minIntensity 10
maxIntensity 15
cloudDuration 5
cloudyPercent 50

anybody see any potential problems
 
Last edited:
Code:
Heater_5
Fallback OFF 
Set OFF 
[COLOR="RoyalBlue"]If MainTmp > 80.0 Then OFF [/COLOR]
If MainTmp < 77.8 Then ON 
[COLOR="royalblue"]If MainTmp > 78.0 Then OFF[/COLOR]

Chiller_6
Fallback OFF 
Set OFF 
[COLOR="royalblue"]If MainTmp < 75.0 Then OFF [/COLOR]
If MainTmp > 78.2 Then ON 
[COLOR="royalblue"]If MainTmp < 78.0 Then OFF [/COLOR]
If Outlet Return_1 = OFF Then OFF
Not sure what you intend, but the highlighted code is redundant within each outlet.

For example, if the temp is 78.1 the heater will be OFF so 'If MainTmp > 80.0...' is unneeded. Also, remove Set OFF from both outlets if you intend to control the temp over a range. With it there it will turn off the heater as soon as the temp reaches 77.8.

The Time command is accurate to the whole minute. So, just in case you were not aware, OldSWout_4 will run from 17:01 to 17:05 and NewSWin_8 will run from 17:06 to 17:10.


Todd
 
Last edited:
Thanks for your input i never noticed the two redundant codes
does my water changer OldSWout and NewSWin look like they should work i have not tested it yet
 
Back
Top