Skip to content

Commit

Permalink
fix(shared-data): widen gripper error bounds
Browse files Browse the repository at this point in the history
Unfortunately, the gripper assemblies vary by enough that without
calibration (which we haven't yet implemented) we are not
accurate (i.e., encoder position matching physical position) enough to
trigger on small errors. A larger value should still catch the cases
where the gripper closes on air.

The next step is to implement jaw calibration during home to bring this
value down again (RET-1416)

Closes RQA-2242
  • Loading branch information
sfoster1 committed Jan 24, 2024
1 parent 0e25e2d commit befee3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion shared-data/gripper/definitions/1/gripperV1.1.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
"min": 60.0,
"max": 92.0
},
"maxAllowedGripError": 6.0
"maxAllowedGripError": 12.0
}
}
2 changes: 1 addition & 1 deletion shared-data/gripper/definitions/1/gripperV1.2.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
"min": 60.0,
"max": 92.0
},
"maxAllowedGripError": 6.0
"maxAllowedGripError": 12.0
}
}

0 comments on commit befee3f

Please sign in to comment.