We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d4ebb2 commit 87a63aeCopy full SHA for 87a63ae
2 files changed
bec_testing_plugin/scans/__init__.py
@@ -1,3 +1,4 @@
1
from .custom_scan import CustomTestingScan
2
+from .device_progress_scan import DeviceProgressScan
3
-__all__ = ["CustomTestingScan"]
4
+__all__ = ["CustomTestingScan", "DeviceProgressScan"]
bec_testing_plugin/scans/device_progress_scan.py
@@ -0,0 +1,10 @@
+from bec_server.scan_server.scans import Scan
+
+class DeviceProgressScan(Scan):
5
+ """A scan that simulates device progress updates."""
6
7
+ scan_name = "device_progress_grid_scan"
8
9
+ def scan_report_instructions(self):
10
+ yield from self.stubs.scan_report_instruction({"device_progress": ["waveform"]})
0 commit comments