Skip to content

Commit

Permalink
update polynomial
Browse files Browse the repository at this point in the history
  • Loading branch information
ahiuchingau committed Apr 20, 2023
1 parent 7305b0e commit 4c3352c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion api/src/opentrons/hardware_control/backends/ot3utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def create_gripper_jaw_grip_group(
) -> MoveGroup:
step = create_gripper_jaw_step(
duration=np.float64(GRIPPER_JAW_GRIP_TIME),
duty_cycle=np.float32(duty_cycle),
duty_cycle=np.float32(round(duty_cycle)),
stop_condition=stop_condition,
move_type=MoveType.grip,
)
Expand Down
6 changes: 3 additions & 3 deletions shared-data/gripper/definitions/1/gripperV1.1.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"displayName": "Gripper V1.1",
"gripForceProfile": {
"polynomial": [
[0, 3.64726],
[1, 1.37251],
[2, 0.02215]
[0, 3.47784],
[1, 1.37276],
[2, 0.02030]
],
"defaultGripForce": 15.0,
"defaultHomeForce": 12.0,
Expand Down

0 comments on commit 4c3352c

Please sign in to comment.