更新20260518

This commit is contained in:
GukSang.Jin
2026-05-19 18:22:00 +08:00
parent 00c224ceff
commit 2f4388723c
5 changed files with 83 additions and 43 deletions

View File

@@ -5,6 +5,7 @@
public string IpAddress { get; set; }
public int Port { get; set; }
public byte SlaveId { get; set; }
public PlcFloatWordOrder FloatWordOrder { get; set; } = PlcFloatWordOrder.LowWordFirst;
// 硬度
public ushort HardnessMax { get; set; }
@@ -14,7 +15,8 @@
public ushort HardnessSudu { get; set; }
public ushort HardnessWeiyi { get; set; }
public ushort HardnessLimit { get; set; }
public ushort HardnessForward { get; set; }
public ushort HardnessBack { get; set; }
@@ -67,4 +69,10 @@
public ushort Dissolution1SampleInterval { get; set; }
public ushort Dissolution2SampleInterval { get; set; }
}
public enum PlcFloatWordOrder
{
LowWordFirst,
HighWordFirst
}
}