Skip to content

Commit 399211a

Browse files
committed
feat(api, shared-data): decrease the heater shaker min temp to 20C for neo.
1 parent 453cd47 commit 399211a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

api/src/opentrons/protocol_engine/state/module_substates/heater_shaker_module_substate.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818

1919

2020
# TODO (spp, 2022-03-22): Move these values to heater-shaker module definition.
21-
HEATER_SHAKER_TEMPERATURE_RANGE = TemperatureRange(min=37, max=95)
21+
# Custom value for Neo
22+
HEATER_SHAKER_TEMPERATURE_RANGE = TemperatureRange(min=20, max=95)
2223
HEATER_SHAKER_SPEED_RANGE = SpeedRange(min=200, max=3000)
2324

2425

shared-data/js/constants.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ export const TEMP_MAX = 96
176176
export const TEMP_BLOCK_MAX = 99
177177
export const TEMP_LID_MIN = 37
178178
export const TEMP_LID_MAX = 110
179-
export const HS_TEMP_MIN = 37
179+
export const HS_TEMP_MIN = 20
180180
export const HS_TEMP_MAX = 95
181181
export const MICRO_LITERS = 'µL'
182182

0 commit comments

Comments
 (0)