-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(shared-data): bump gripper model version and use new force polyn…
…omial table for new motor (#15413) <!-- Thanks for taking the time to open a pull request! Please make sure you've read the "Opening Pull Requests" section of our Contributing Guide: https://github.com/Opentrons/opentrons/blob/edge/CONTRIBUTING.md#opening-pull-requests To ensure your code is reviewed quickly and thoroughly, please fill out the sections below to the best of your ability! --> # Overview The manufacturer is changing the brushes on the gripper motor, so we'll need to use a new force polynomial for the new gripper models (v1.3). In order to use the new force function, you will need to make sure the serial number is in the format of `GRPV13xxxxx`.
- Loading branch information
1 parent
77223c6
commit 4f90e28
Showing
6 changed files
with
55 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"$otSharedSchema": "gripper/schemas/1", | ||
"model": "gripperV1.3", | ||
"schemaVersion": 1, | ||
"displayName": "Flex Gripper", | ||
"gripForceProfile": { | ||
"polynomial": [ | ||
[0, 3.759869], | ||
[1, 0.81005], | ||
[2, 0.04597701] | ||
], | ||
"defaultGripForce": 15.0, | ||
"defaultIdleForce": 10.0, | ||
"defaultHomeForce": 12.0, | ||
"min": 2.0, | ||
"max": 30.0 | ||
}, | ||
"geometry": { | ||
"baseOffsetFromMount": [19.5, -74.325, -94.825], | ||
"jawCenterOffsetFromBase": [0.0, 0.0, -86.475], | ||
"pinOneOffsetFromBase": [6.0, -54.0, -98.475], | ||
"pinTwoOffsetFromBase": [6.0, 54.0, -98.475], | ||
"jawWidth": { | ||
"min": 60.0, | ||
"max": 92.0 | ||
}, | ||
"maxAllowedGripError": 3.0 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters