-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add cutout fixtures and helpers for module fixtures
- Loading branch information
Showing
7 changed files
with
312 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
export type FlexAddressableAreaName = | ||
| 'A1' | ||
| 'B1' | ||
| 'C1' | ||
| 'D1' | ||
| 'A2' | ||
| 'B2' | ||
| 'C2' | ||
| 'D2' | ||
| 'A3' | ||
| 'B3' | ||
| 'C3' | ||
| 'D3' | ||
| 'A4' | ||
| 'B4' | ||
| 'C4' | ||
| 'D4' | ||
| 'movableTrashA1' | ||
| 'movableTrashB1' | ||
| 'movableTrashC1' | ||
| 'movableTrashD1' | ||
| 'movableTrashA3' | ||
| 'movableTrashB3' | ||
| 'movableTrashC3' | ||
| 'movableTrashD3' | ||
| '1ChannelWasteChute' | ||
| '8ChannelWasteChute' | ||
| '96ChannelWasteChute' | ||
| 'gripperWasteChute' | ||
| 'thermocyclerModule' | ||
| 'heaterShakerA1' | ||
| 'heaterShakerB1' | ||
| 'heaterShakerC1' | ||
| 'heaterShakerD1' | ||
| 'heaterShakerA3' | ||
| 'heaterShakerB3' | ||
| 'heaterShakerC3' | ||
| 'heaterShakerD3' | ||
| 'temperatureModuleA1' | ||
| 'temperatureModuleB1' | ||
| 'temperatureModuleC1' | ||
| 'temperatureModuleD1' | ||
| 'temperatureModuleA3' | ||
| 'temperatureModuleB3' | ||
| 'temperatureModuleC3' | ||
| 'temperatureModuleD3' | ||
|
||
export type OT2AddressableAreaName = | ||
| '1' | ||
| '2' | ||
| '3' | ||
| '4' | ||
| '5' | ||
| '6' | ||
| '7' | ||
| '8' | ||
| '9' | ||
| '10' | ||
| '11' | ||
| '12' | ||
| 'fixedTrash' | ||
|
||
export type AddressableAreaName = | ||
| FlexAddressableAreaName | ||
| OT2AddressableAreaName | ||
|
||
export type CutoutId = | ||
| 'cutoutD1' | ||
| 'cutoutD2' | ||
| 'cutoutD3' | ||
| 'cutoutC1' | ||
| 'cutoutC2' | ||
| 'cutoutC3' | ||
| 'cutoutB1' | ||
| 'cutoutB2' | ||
| 'cutoutB3' | ||
| 'cutoutA1' | ||
| 'cutoutA2' | ||
| 'cutoutA3' | ||
|
||
export type OT2CutoutId = | ||
| 'cutout1' | ||
| 'cutout2' | ||
| 'cutout3' | ||
| 'cutout4' | ||
| 'cutout5' | ||
| 'cutout6' | ||
| 'cutout7' | ||
| 'cutout8' | ||
| 'cutout9' | ||
| 'cutout10' | ||
| 'cutout11' | ||
| 'cutout12' | ||
|
||
export type SingleSlotCutoutFixtureId = | ||
| 'singleLeftSlot' | ||
| 'singleCenterSlot' | ||
| 'singleRightSlot' | ||
|
||
export type StagingAreaRightSlotFixtureId = 'stagingAreaRightSlot' | ||
|
||
export type TrashBinAdapterCutoutFixtureId = 'trashBinAdapter' | ||
|
||
export type WasteChuteCutoutFixtureId = | ||
| 'wasteChuteRightAdapterCovered' | ||
| 'wasteChuteRightAdapterNoCover' | ||
| 'stagingAreaSlotWithWasteChuteRightAdapterCovered' | ||
| 'stagingAreaSlotWithWasteChuteRightAdapterNoCover' | ||
|
||
export type FlexModuleCutoutFixtureId = | ||
| 'heaterShakerModule' | ||
| 'temperatureModule' | ||
| 'magneticBlockModule' | ||
| 'thermocyclerModuleRear' | ||
| 'thermocyclerModuleFront' | ||
|
||
export type OT2SingleStandardSlot = 'singleStandardSlot' | ||
|
||
export type OT2FixedTrashSlot = 'fixedTrashSlot' | ||
|
||
export type CutoutFixtureId = | ||
| SingleSlotCutoutFixtureId | ||
| StagingAreaRightSlotFixtureId | ||
| TrashBinAdapterCutoutFixtureId | ||
| WasteChuteCutoutFixtureId | ||
| FlexModuleCutoutFixtureId | ||
| OT2SingleStandardSlot | ||
| OT2FixedTrashSlot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import flexDeckDefV4 from '../../deck/definitions/4/ot3_standard.json' | ||
import ot2DeckDefV4 from '../../deck/definitions/4/ot2_standard.json' | ||
import ot2DeckDefShortFixedTrashV4 from '../../deck/definitions/4/ot2_short_trash.json' | ||
import flexDeckDefV5 from '../../deck/definitions/5/ot3_standard.json' | ||
import ot2DeckDefV5 from '../../deck/definitions/5/ot2_standard.json' | ||
import ot2DeckDefShortFixedTrashV5 from '../../deck/definitions/5/ot2_short_trash.json' | ||
|
||
export { ot2DeckDefV4, ot2DeckDefShortFixedTrashV4, flexDeckDefV4 } | ||
export { ot2DeckDefV5, ot2DeckDefShortFixedTrashV5, flexDeckDefV5 } |
Oops, something went wrong.