Skip to content

Commit

Permalink
fix(api): monitor the pressure sensor more
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanthecoder committed May 22, 2024
1 parent dac2589 commit 0ae8629
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion api/src/opentrons/hardware_control/backends/ot3controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,8 @@ async def move(
mounts_moving = [
k
for k in moving_axes_in_move_group(move_group)
if k in [NodeId.pipette_left, NodeId.pipette_right]
if k
in [NodeId.pipette_left, NodeId.pipette_right, NodeId.head_l, NodeId.head_r]
]
async with self._monitor_overpressure(mounts_moving):
positions = await runner.run(can_messenger=self._messenger)
Expand Down

0 comments on commit 0ae8629

Please sign in to comment.