123456789101112131415161718192021222324252627282930313233 |
-
- namespace CyberX8_MainPages.Unity
- {
- public class MFCCalibrationTenPointsData
- {
- public float Gas1SetPoint { get; set; }
- public float Gas1Calculate { get; set; }
- public float Gas1Error { get; set; }
- public float Gas2SetPoint { get; set; }
- public float Gas2Calculate { get; set; }
- public float Gas2Error { get; set; }
- public float Gas3SetPoint { get; set; }
- public float Gas3Calculate { get; set; }
- public float Gas3Error { get; set; }
- public float Gas4SetPoint { get; set; }
- public float Gas4Calculate { get; set; }
- public float Gas4Error { get; set; }
- public float Gas5SetPoint { get; set; }
- public float Gas5Calculate { get; set; }
- public float Gas5Error { get; set; }
- public float Gas6SetPoint { get; set; }
- public float Gas6Calculate { get; set; }
- public float Gas6Error { get; set; }
- public float Gas7SetPoint { get; set; }
- public float Gas7Calculate { get; set; }
- public float Gas7Error { get; set; }
- public float Gas8SetPoint { get; set; }
- public float Gas8Calculate { get; set; }
- public float Gas8Error { get; set; }
- }
- }
|