add the tschireen relay exception
This commit is contained in:
parent
105a4e59f5
commit
fc79441c10
|
|
@ -122,12 +122,17 @@ public class RelaysRecordAmax : IRelaysRecord
|
||||||
public Boolean FiWarning => !_Regs.DigitalInput21;
|
public Boolean FiWarning => !_Regs.DigitalInput21;
|
||||||
public Boolean FiError => !_Regs.DigitalInput23;
|
public Boolean FiError => !_Regs.DigitalInput23;
|
||||||
|
|
||||||
public Boolean K2ConnectIslandBusToGridBus
|
public Boolean K2ConnectIslandBusToGridBus // IMPORTANT: this should be changed to Relay22 for Tschirren installation
|
||||||
{
|
{
|
||||||
get => _Regs.Relay23;
|
get => _Regs.Relay23;
|
||||||
set => _Regs.Relay23 = value;
|
set => _Regs.Relay23 = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Boolean OldK2ConnectIslandBusToGridBus
|
||||||
|
{
|
||||||
|
get => _Regs.Relay23;
|
||||||
|
set => _Regs.Relay23 = value;
|
||||||
|
}
|
||||||
public static implicit operator Amax5070Registers(RelaysRecordAmax d) => d._Regs;
|
public static implicit operator Amax5070Registers(RelaysRecordAmax d) => d._Regs;
|
||||||
public static implicit operator RelaysRecordAmax(Amax5070Registers d) => new RelaysRecordAmax(d);
|
public static implicit operator RelaysRecordAmax(Amax5070Registers d) => new RelaysRecordAmax(d);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue