File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,9 @@ def move_and_store_labware(self, lw: Labware) -> None:
60
60
def run (protocol : ProtocolContext ) -> None :
61
61
hardware = protocol ._hw_manager .hardware
62
62
hardware .cache_instruments ()
63
+ print ("ATTACHED MODULES:" )
64
+ for m in hardware .attached_modules :
65
+ print (m )
63
66
64
67
tiprack_stacker = StackerModule (
65
68
serial_number = "PS241204SZEVT27" ,
@@ -76,7 +79,7 @@ def run(protocol: ProtocolContext) -> None:
76
79
77
80
# # Thermocycler in A1
78
81
thermocycler = protocol .load_module ("thermocyclerModuleV2" )
79
- thermocycler .open_lid ()
82
+ thermocycler .open ()
80
83
81
84
# Tiprack adapaters in A2, A3, B2
82
85
tiprack_adapters = [
Original file line number Diff line number Diff line change @@ -1177,7 +1177,9 @@ def select_hardware_module_to_load( # noqa: C901
1177
1177
f" present in { location .slotName .value } "
1178
1178
)
1179
1179
1180
+ print (f"FIND MODULE: { model } " )
1180
1181
for m in attached_modules :
1182
+ print (f"MODULE: { m } { m .definition .model } " )
1181
1183
if m not in self ._state .hardware_by_module_id .values ():
1182
1184
if model == m .definition .model or model in m .definition .compatibleWith :
1183
1185
if expected_serial_number is not None :
You can’t perform that action at this time.
0 commit comments