Skip to content

Commit

Permalink
Add second pressure card for concurrent spc tests
Browse files Browse the repository at this point in the history
RE #
  • Loading branch information
cailafinn committed Sep 6, 2022
1 parent 284122b commit 50ce12f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lewis_emulators/mercuryitc/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,11 @@ def _initialize_data(self):
"DB6.H2": HeaterChannel("DB6.H2"),
"DB7.A2": AuxChannel("DB7.A2"),

# Pressure channel 2
"DB5.P1": PressureChannel("DB5.P1"),
"DB6.H3": HeaterChannel("DB6.H3"),
"DB7.A3": AuxChannel("DB7.A3"),

# Level channel 1
"DB8.L0": LevelChannel("DB8.L0"),
}
Expand All @@ -130,6 +135,9 @@ def _initialize_data(self):
self.channels["DB5.P0"].associated_heater_channel = "DB6.H2"
self.channels["DB5.P0"].associated_aux_channel = "DB7.A2"

self.channels["DB5.P1"].associated_heater_channel = "DB6.H3"
self.channels["DB5.P1"].associated_aux_channel = "DB7.A3"

def reset(self):
self._initialize_data()

Expand Down

0 comments on commit 50ce12f

Please sign in to comment.