Skip to content

Commit c8d5916

Browse files
authored
feat(protocol-designer): h-s min temp 20C (#19091)
This will need robot stack 8.6 to function properly, which I think is fine. Limit heater shaker min temp to only 20 instead of 37. Closes EXEC-1654 ## testing - [ ] PD should display 20-95\degC on the heater-shaker temperature input - [ ] PD should allow you to enter, say, 26 in the temperature selector - [ ] The exported protocol should generate 26 if you type in 26
1 parent ea73c94 commit c8d5916

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

opentrons-ai-server/api/storage/docs/pd/step_doc.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1590,14 +1590,14 @@ heaterShaker has the following fields:
15901590
"setHeaterShakerTemperature": boolean, // Whether to set temperature
15911591
"setShake": boolean, // Whether to shake
15921592
// TEMPERATURE CONTROL
1593-
"targetHeaterShakerTemperature": "number-as-string" | null, // Temperature in °C (37-95°C)
1593+
"targetHeaterShakerTemperature": "number-as-string" | null, // Temperature in °C (20-95°C)
15941594
"targetSpeed": "number-as-string" | null, // RPM for shaking (200-3000 RPM)
15951595
}
15961596
```
15971597

15981598
Additonal notes:
15991599

1600-
- Temperature range: 37-95°C
1600+
- Temperature range: 20-95°C
16011601
- Speed range: 200-3000 RPM
16021602
- The latch cannot be open while shaking
16031603
- Timer can be set to control duration of shaking/heating

protocol-designer/src/assets/localization/en/protocol_steps.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"heaterShakerTimer": "Use the format mm:ss",
3131
"lidTargetTemp": "Valid range between 37 and 110˚C",
3232
"lidTargetTempHold": "Valid range between 37 and 110˚C",
33-
"targetHeaterShakerTemperature": "Valid range between 37 and 95˚C",
33+
"targetHeaterShakerTemperature": "Valid range between 20 and 95˚C",
3434
"targetSpeed": "Valid range between 200 and 3000 rpm",
3535
"targetTemperature": "Valid range between 4 and 95˚C",
3636
"volume": "Valid range between 0.1 and {{max}}"

protocol-designer/src/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export const MIN_ENGAGE_HEIGHT_V2 = -2.5
3838
export const MAX_ENGAGE_HEIGHT_V2 = 25
3939
export const MIN_TEMP_MODULE_TEMP = 4
4040
export const MAX_TEMP_MODULE_TEMP = 95
41-
export const MIN_HEATER_SHAKER_MODULE_TEMP = 37
41+
export const MIN_HEATER_SHAKER_MODULE_TEMP = 20
4242
export const MAX_HEATER_SHAKER_MODULE_TEMP = 95
4343
export const MIN_HEATER_SHAKER_MODULE_RPM = 200
4444
export const MAX_HEATER_SHAKER_MODULE_RPM = 3000

0 commit comments

Comments
 (0)