Mini8CommunicatorData.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. using GeneralData;
  2. namespace Mini8CommunicatorData;
  3. public class Mini8Output
  4. {
  5. public byte ChannelIndex { get; set; }
  6. public DateTime CollectTime { get; set; }
  7. public float PV { get; set; }
  8. public float WorkingOutput { get; set; }
  9. public AutoTuneStatus AutoTuneStatus { get; set; }
  10. public float AutoTune_P { get; set; }
  11. public float AutoTune_I { get; set; }
  12. public float AutoTune_D { get; set; }
  13. public TcBorken SensorBreakAlarm { get; set; }
  14. public float SetPoint { get; set; }
  15. public ActiveTuneSet ActiveTuneSet { get; set; }
  16. public float Running_P { get; set; }
  17. public float Running_I { get; set; }
  18. public float Running_D { get; set; }
  19. public Inhibit Inhibit { get; set; }
  20. public float SetpointUpRate { get; set; }
  21. public float SetpointDownRate { get; set; }
  22. public AutotuneActive AutotuneActive { get; set; }
  23. }
  24. public class Mini8Limit
  25. {
  26. public ushort Caps { get; set; }
  27. public ushort Floor { get; set; }
  28. public ushort CapsWarning { get; set; }
  29. public ushort FloorWarning { get; set; }
  30. }
  31. public class Mini8Input
  32. {
  33. //To Config Setting
  34. public float Caps { get; set; }
  35. public float Floor { get; set; }
  36. public float CapsWarning { get; set; }
  37. public float FloorWarning { get; set; }
  38. public int DelayMillionSeconds { get; set; }
  39. public float SetPoint { get; set; }
  40. public float Running_P { get; set; }
  41. public float Running_I { get; set; }
  42. public float Running_D { get; set; }
  43. public float SetpointUpRate { get; set; }
  44. public float SetpointDownRate { get; set; }
  45. }