Skip to content

Commit

Permalink
Merge pull request #153 from ISISComputingGroup/TICKET6947_auto_cryo_…
Browse files Browse the repository at this point in the history
…ctrl

Add second pressure card for concurrent spc tests
  • Loading branch information
LilithCole authored Sep 23, 2022
2 parents 8b8081b + 50ce12f commit 38b5cdf
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 38b5cdf

Please sign in to comment.