Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
a66d547291
|
@ -27,30 +27,42 @@ public class AmptCommunicationUnit
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var modbus = OpenConnection();
|
OpenConnection();
|
||||||
return TryReadStatus(modbus);
|
return TryReadStatus();
|
||||||
}
|
}
|
||||||
catch
|
catch
|
||||||
{
|
{
|
||||||
Modbus?.CloseConnection();
|
CloseConnection();
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private ModbusTcpClient OpenConnection()
|
private void CloseConnection()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Modbus?.CloseConnection();
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
// ignored
|
||||||
|
}
|
||||||
|
|
||||||
|
Modbus = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void OpenConnection()
|
||||||
{
|
{
|
||||||
if (Modbus is null)
|
if (Modbus is null)
|
||||||
{
|
{
|
||||||
var connection = new ModbusTcpConnection(Hostname, Port);
|
var connection = new ModbusTcpConnection(Hostname, Port);
|
||||||
Modbus = new ModbusTcpClient(connection, SlaveAddress);
|
Modbus = new ModbusTcpClient(connection, SlaveAddress);
|
||||||
}
|
}
|
||||||
|
|
||||||
return Modbus;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static AmptCommunicationUnitStatus TryReadStatus(ModbusTcpClient modbus)
|
private AmptCommunicationUnitStatus TryReadStatus()
|
||||||
{
|
{
|
||||||
var r = modbus.ReadHoldingRegisters(1, 116);
|
var r = Modbus!.ReadHoldingRegisters(1, 116);
|
||||||
|
|
||||||
var currentFactor = Pow(10.0m, r.GetInt16(73));
|
var currentFactor = Pow(10.0m, r.GetInt16(73));
|
||||||
var voltageFactor = Pow(10.0m, r.GetInt16(74));
|
var voltageFactor = Pow(10.0m, r.GetInt16(74));
|
||||||
|
|
|
@ -7,31 +7,60 @@ namespace InnovEnergy.Lib.Devices.Adam6060;
|
||||||
|
|
||||||
public class Adam6060Device
|
public class Adam6060Device
|
||||||
{
|
{
|
||||||
private ModbusTcpClient Modbus { get; }
|
public String Hostname { get; }
|
||||||
|
public UInt16 Port { get; }
|
||||||
|
public Byte SlaveAddress { get; }
|
||||||
|
|
||||||
|
private ModbusTcpClient? Modbus { get; set; }
|
||||||
|
|
||||||
public Adam6060Device(String hostname, UInt16 port = 5004, Byte slaveAddress = 2)
|
public Adam6060Device(String hostname, UInt16 port = 5004, Byte slaveAddress = 2)
|
||||||
{
|
{
|
||||||
var connection = new ModbusTcpConnection(hostname, port);
|
Hostname = hostname;
|
||||||
Modbus = new ModbusTcpClient(connection, slaveAddress);
|
Port = port;
|
||||||
|
SlaveAddress = slaveAddress;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void OpenConnection()
|
||||||
|
{
|
||||||
|
if (Modbus is null)
|
||||||
|
{
|
||||||
|
var connection = new ModbusTcpConnection(Hostname, Port);
|
||||||
|
Modbus = new ModbusTcpClient(connection, SlaveAddress);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public Adam6060Status? ReadStatus()
|
public Adam6060Status? ReadStatus()
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
OpenConnection();
|
||||||
return TryReadStatus();
|
return TryReadStatus();
|
||||||
}
|
}
|
||||||
catch (Exception)
|
catch
|
||||||
{
|
{
|
||||||
Modbus.CloseConnection();
|
CloseConnection();
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void CloseConnection()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Modbus?.CloseConnection();
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
// ignored
|
||||||
|
}
|
||||||
|
|
||||||
|
Modbus = null;
|
||||||
|
}
|
||||||
|
|
||||||
private Adam6060Status TryReadStatus()
|
private Adam6060Status TryReadStatus()
|
||||||
{
|
{
|
||||||
var inputs = Modbus.ReadDiscreteInputs(DigitalInputsStartRegister, NbDigitalInputs);
|
var inputs = Modbus!.ReadDiscreteInputs(DigitalInputsStartRegister, NbDigitalInputs);
|
||||||
var relays = Modbus.ReadDiscreteInputs(RelaysStartRegister, NbRelays);
|
var relays = Modbus!.ReadDiscreteInputs(RelaysStartRegister, NbRelays);
|
||||||
|
|
||||||
return new Adam6060Status
|
return new Adam6060Status
|
||||||
{
|
{
|
||||||
|
@ -55,17 +84,19 @@ public class Adam6060Device
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Modbus.WriteMultipleCoils(RelaysStartRegister, control.Relay0,
|
OpenConnection();
|
||||||
control.Relay1,
|
|
||||||
control.Relay2,
|
Modbus!.WriteMultipleCoils(RelaysStartRegister, control.Relay0,
|
||||||
control.Relay3,
|
control.Relay1,
|
||||||
control.Relay4,
|
control.Relay2,
|
||||||
control.Relay5);
|
control.Relay3,
|
||||||
|
control.Relay4,
|
||||||
|
control.Relay5);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
catch (Exception)
|
catch
|
||||||
{
|
{
|
||||||
Modbus.CloseConnection();
|
CloseConnection();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue