v1
cable-calibration
Complete cable encoder calibration with measured distance
Complete calibration using the measured cable distance to calculate the new calibration factor.
Calculates the calibration factor (pulses per meter) by dividing encoder position change by the actual measured cable distance. The new factor is applied immediately and saved to system configuration. Requires the exact distance in meters that the cable was extended during calibration.
post/api/v1/reel/calibration/finish
Request body
Example request
{
"description": "Typical 5 meter calibration",
"name": "Standard Calibration",
"value": {
"pulled_cable_length": 5
}
}Response
Calibration completion results with new calibration factor
Example response
{
"description": "Calibration completed with new factor calculated",
"name": "Calibration Completed",
"value": {
"action": "finish_calibration",
"error": false,
"error_msgs": [],
"result": {
"calibrating": false,
"new_factor": 1895
}
}
}