MFCCalibrationTenPointsData.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. 
  2. namespace CyberX8_MainPages.Unity
  3. {
  4. public class MFCCalibrationTenPointsData
  5. {
  6. public float Gas1SetPoint { get; set; }
  7. public float Gas1Calculate { get; set; }
  8. public float Gas1Error { get; set; }
  9. public float Gas2SetPoint { get; set; }
  10. public float Gas2Calculate { get; set; }
  11. public float Gas2Error { get; set; }
  12. public float Gas3SetPoint { get; set; }
  13. public float Gas3Calculate { get; set; }
  14. public float Gas3Error { get; set; }
  15. public float Gas4SetPoint { get; set; }
  16. public float Gas4Calculate { get; set; }
  17. public float Gas4Error { get; set; }
  18. public float Gas5SetPoint { get; set; }
  19. public float Gas5Calculate { get; set; }
  20. public float Gas5Error { get; set; }
  21. public float Gas6SetPoint { get; set; }
  22. public float Gas6Calculate { get; set; }
  23. public float Gas6Error { get; set; }
  24. public float Gas7SetPoint { get; set; }
  25. public float Gas7Calculate { get; set; }
  26. public float Gas7Error { get; set; }
  27. public float Gas8SetPoint { get; set; }
  28. public float Gas8Calculate { get; set; }
  29. public float Gas8Error { get; set; }
  30. }
  31. }