class CalibrationResult
August 13, 2019 ยท View on GitHub
Member values
| Member name | Data type | Description |
|---|---|---|
| calibration_status | uint32 | Calibration status |
| calibration_details | uint32 | Additional information (used when status is in fault) |
Member functions
| Function name | Return type | Input type | Description |
|---|---|---|---|
| calibration_status() const | uint32 | void | Returns the current value of calibration_status. If the calibration_status is not set, returns 0. |
| set_calibration_status() | void | uint32 | Sets the value of calibration_status. After calling this, calibration_status() will return value. |
| clear_calibration_status() | void | void | Clears the value of calibration_status. After calling this, calibration_status() will return the empty string/empty bytes. |
| calibration_details() | uint32 | void | Returns the current value of calibration_details. If the calibration_details is not set, returns 0. |
| set_calibration_details() | void | uint32 | Sets the value of calibration_details. After calling this, calibration_details() will return value. |
| clear_calibration_details() | void | void | Clears the value of calibration_details. After calling this, calibration_details() will return 0. |
Parent topic: DeviceConfig (C++)