diff --git a/devices/adrian.py b/devices/adrian.py new file mode 100644 index 0000000..3e11ac1 --- /dev/null +++ b/devices/adrian.py @@ -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") +) + + +