Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(hardware): Store overpressure count on plungers #17839

Merged
merged 3 commits into from
Mar 25, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions hardware/opentrons_hardware/firmware_bindings/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,7 @@ class SensorType(int, Enum):
pressure_temperature = 0x04
humidity = 0x05
temperature = 0x06
UNUSED = 0x07


@unique
Expand Down Expand Up @@ -444,6 +445,7 @@ class MotorUsageValueType(int, Enum):
right_gear_motor_distance = 0x2
force_application_time = 0x3
total_error_count = 0x4
overpressure_error_count = 0x5


class MoveAckId(int, Enum):
Expand Down
Loading