using InnovEnergy.Lib.Protocols.Modbus.Channels; using InnovEnergy.Lib.Protocols.Modbus.Clients; using InnovEnergy.Lib.Protocols.Modbus.Slaves; namespace InnovEnergy.Lib.Devices.Adam6060; public class Adam6060Device : ModbusDevice { public Adam6060Device(String hostname, Byte slaveId, UInt16 port = 502) : this(new TcpChannel(hostname, port), slaveId) { } public Adam6060Device(Channel channel, Byte slaveId) : base(new ModbusTcpClient(channel, slaveId)) { } }