File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
components/src/hardware-sim/BaseDeck Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -89,9 +89,15 @@ export interface HopperLabwareProps {
89
89
// these ugly consts are unfortunately necessary as the hopper location exists
90
90
// outside of our deck definition so the render doesn't follow our normal conventions
91
91
export const STACKER_MODULE_Y_OFFSET = - 6
92
- export const STACKER_HOPPER_LABWARE_X_OFFSET = 178.5
93
- export const STACKER_HOPPER_LABWARE_Y_OFFSET = 7
92
+ // todo(mm, 2025-07-16): 17.5 mm is a by-eye adjustment that takes us from a little bit
93
+ // left of the hopper to inside the hopper. The fact that we were 17.5 mm left in the
94
+ // first place is weird, and suggests we're doing wrong math somewhere. A more normal
95
+ // thing to expect here would be starting at the extended shuttle position and needing
96
+ // an offset of hundreds of mm to go from there to inside the hopper.
97
+ export const STACKER_HOPPER_LABWARE_X_OFFSET = 17.5
98
+ export const STACKER_HOPPER_LABWARE_Y_OFFSET = 6
94
99
export const STACKER_DECK_VIEW_BOX_EXPANSION = 220
100
+
95
101
interface BaseDeckProps {
96
102
deckConfig : DeckConfiguration
97
103
robotType : RobotType
You can’t perform that action at this time.
0 commit comments