ChannelConfig.cs 736 B

1234567891011121314151617181920212223242526
  1. using GeneralData;
  2. namespace TemperatureConfigFile;
  3. public class ChannelConfig
  4. {
  5. public byte Index { get; set; }
  6. public float Caps { get; set; }
  7. public float Floor { get; set; }
  8. public float CapsWarning { get; set; }
  9. public float FloorWarning { get; set; }
  10. public int DelayMillionSeconds { get; set; }
  11. public ChannelMode ChannelMode { get; set; }
  12. public float SetPoint { get; set; }
  13. public ActiveTuneSet ActiveTuneSet { get; set; }
  14. public float Running_P { get; set; }
  15. public float Running_I { get; set; }
  16. public float Running_D { get; set; }
  17. public Inhibit Inhibit { get; set; }
  18. public float SetpointUpRate { get; set; }
  19. public float SetpointDownRate { get; set; }
  20. }