microwave and turboscope

This commit is contained in:
2023-11-28 15:00:38 +01:00
parent 363acf88e8
commit 573c6a9e1c

18
devices/adrian.py Normal file
View File

@ -0,0 +1,18 @@
from slic.core.adjustable import PVAdjustable
from slic.core.device import SimpleDevice
turboscope = SimpleDevice("Turboscope",
current_frame = PVAdjustable("DPO:CurrentFrame"),
demodulation_frequency = PVAdjustable("DPO:DemodulationFrequency"),
frame_number = PVAdjustable("DPO:FrameNumber")
)
microwave = SimpleDevice("Microwave",
freq = PVAdjustable("VXGC:Freq"),
lock_status = PVAdjustable("VXGC:LockStatus"),
phase = PVAdjustable("VXGC:Phase")
)