Skip to content

Commit

Permalink
add a note on the ac voltage
Browse files Browse the repository at this point in the history
  • Loading branch information
stan-dot committed Jan 17, 2025
1 parent 5627331 commit 1abae84
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/dodal/devices/pressure_jump_cell.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ class ValveControlRequest(StrictEnum):


class ValveOpenSeqRequest(StrictEnum):
INACTIVE = 0
OPEN_SEQ = 1
INACTIVE = "0"
OPEN_SEQ = "1"


class PumpMotorDirectionState(StrictEnum):
Expand Down Expand Up @@ -232,6 +232,9 @@ def __init__(
self.beckhoff_pressure = epics_signal_r(
float, f"{final_prefix}STATP{number}:MeanValue_RBV"
)
# P1 beckhoff voltage = BL38P-EA-ADC-02:CH1
# P2 beckhoff voltage = BL38P-EA-ADC-01:CH2
# P3 beckhoff voltage = BL38P-EA-ADC-01:CH1
self.slow_beckhoff_voltage_readout = epics_signal_r(
float, f"{full_different_prefix_adc}CH1"
)
Expand Down

0 comments on commit 1abae84

Please sign in to comment.