devices: added cryjet_temp pvs

This commit is contained in:
2026-05-12 17:06:04 +02:00
parent 632c1ceff2
commit cb579f6265
+5 -1
View File
@@ -101,8 +101,12 @@ class BeamlineDevices:
self.__cryojet_x = MyMotor(f"{BEAMLINE}-ES-CS:TRX") #currently in is 5 out is 15?
self.__cryojet_temperature_get = PV(f"{BEAMLINE}-ES-CS:TEMP_RBV")
self.__cryojet_temperature_set = PV(f"{BEAMLINE}-ES-CS:TEMP.VAL")
self.magnet_position_sensor = PV(f"{BEAMLINE}-ES-DFS:CBOX-CMP1")
self.magnet_position_sensor_readout = PV(f"{BEAMLINE}-ES-DFS:CBOX-USER1")
#self.magnet_position_sensor_readout = PV(f"{BEAMLINE}-ES-DFS:CBOX-REFVAL1")
self.magnet_position_sensor_state = PV(f"{BEAMLINE}-ES-DFS:CBOX-STATE")
@@ -227,7 +231,7 @@ class BeamlineDevices:
# Cryojet
@property
def cryojet_temp(self) -> float:
return 100
return self.__cryojet_temperature_get.get()
def anneal(self, time: float):
pass