Owner`s manual

94 | P a g e
AUX 1 and 2 modes
Extracted and encoded as combined in Aux12Function
Table 4165-1 AUX 1 Off – Auto – On (Extracted/Encoded as Aux12Function bits 6,7)
Name
Value
Description
Aux 1 Off
0
Aux 1 output is OFF (0 Volts)
Aux 1 Auto
1
Aux 1 operates as defined in Aux2Funtion
Aux 1 On
2
Aux 1 output is ON (~14 Volts)
Aux 1 Unimplemented
3
Unassigned at present
Aux1OffAutoOn = (((Aux12Function & 0xc0) >> 6));
Table 4165-2 AUX 2 Off – Auto – On (Extracted/Encoded as Aux12Function bits 14,15)
Name
Value
Description
Aux 2 Off
0
Aux 2 output is OFF (0 Volts)
Aux 2 Auto
1
Aux 2 operates as defined in Aux2Funtion
Aux 2 On
2
Aux 2 output is ON (~14 Volts)
Aux 2 Unimplemented
3
Unassigned at present
Aux2OffAutoOn = ((Aux12FunctionS & 0xc000) >> 14);
Table 4165-3 AUX 1 Function (Extracted/Encoded as Aux12Function bits 0-5)
Name
Value
Description
DIVERSION SLW+
1
Non-PWM On at Vbatt > Aux1VoltsHiAbs
Off at Vbatt < Aux1VoltsLoAbs (Active High)
DIVERSION SLW-
2
Same as DIVERSION SLW+ but Active Low
BAT DIV V REL+
3
Non-PWM On at Vbatt > Aux1VoltsHiAbs
Off at Vbatt < Aux1VoltsLoAbs (Active High)
BAT DIV V REL-
4
Non-PWM On at Vbatt > Aux1VoltsHiAbs
Off at Vbatt < Aux1VoltsLoAbs (Active Low)
PV V TRIGGER +
7
Active High output if Vin exceeds Aux1VoltsHiPv
PV V TRIGGER -
8
Active Low output if Vin exceeds Aux1VoltsHiPv
MANUAL ON-OFF
9
MANUAL On/Off allowed using Off-Auto-On Selection
TOGGLE TEST
13
Out Once per second On-Off-On-Off automatic toggle
NITE LITE HIGH
14
Active High indicating Night Time. Inactive at Wakeup
NITE LITE LOW
15
Active Low indicating Night Time. Inactive at Wakeup
WIND CLIPPER
16
Output goes Active High when V input is above PV input V
plus headroom voltage
Aux1Function = Aux12Function & 0x3f;