-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'labscript-suite:master' into master
- Loading branch information
Showing
62 changed files
with
2,427 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -159,3 +159,4 @@ conda_packages/ | |
docs/html/ | ||
docs/source/_build/ | ||
docs/source/components.rst | ||
docs/source/devices/_apidoc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{%- macro automodule(modname, options) -%} | ||
.. automodule:: {{ modname }} | ||
{%- for option in options %} | ||
:{{ option }}: | ||
{%- endfor %} | ||
{%- endmacro %} | ||
|
||
{%- macro toctree(docnames) -%} | ||
.. toctree:: | ||
:maxdepth: {{ maxdepth }} | ||
{% for docname in docnames %} | ||
{{ docname }} | ||
{%- endfor %} | ||
{%- endmacro %} | ||
|
||
{%- macro autosummary(submodules) -%} | ||
.. autosummary:: | ||
{% for submodule in submodules %} | ||
{{submodule}} | ||
{%- endfor %} | ||
{%- endmacro %} | ||
|
||
{%- macro autosum(pkgname) -%} | ||
.. autosummary:: | ||
|
||
{{pkgname}} | ||
{%- endmacro %} | ||
|
||
{%- if is_namespace %} | ||
{{- [pkgname, "namespace"] | join(" ") | e | heading }} | ||
{% else %} | ||
{# {{- [pkgname, ""] | join(" ") | e | heading }} #} | ||
{% endif %} | ||
|
||
{%- if submodules %} | ||
{{ autosummary(submodules) }} | ||
{% if separatemodules %} | ||
{{ toctree(submodules) }} | ||
{% else %} | ||
{%- for submodule in submodules %} | ||
{% if show_headings %} | ||
{{- [submodule, ""] | join(" ") | e | heading(2) }} | ||
{% endif %} | ||
{{ automodule(submodule, automodule_options) }} | ||
{% endfor %} | ||
{%- endif %} | ||
{%- endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
How to Add a Device | ||
=================== | ||
|
||
Adding a **labscript-device** involves implementing interfaces for your hardware to different protions of the **labscript-suite**. Namely, you must provide | ||
|
||
* A `labscript_device` that takes **labscript** high-level commands and turns them into instructions that are saved to the shot h5 file. | ||
* A `BLACS_worker` that handles communication with the hardware, in particular interpreting the instructions from the shot h5 file into the necessary hardware commands to configure the device. | ||
* A `BLACS_tab` which provides a graphical interface to control the instrument via **BLACS** | ||
|
||
Though not strictly required, you should also consider providing a `runviewer_parser`, which can read the h5 instructions and produce the appropriate shot timings that would occur. This interface is only used in **runviewer**. | ||
|
||
General Strategy | ||
~~~~~~~~~~~~~~~~ | ||
|
||
As a general rule, it is best to model new hardware implementations off of a currently implemented device that has similar functionality. | ||
If the functionality is similar enough, it may even be possible to simply sub-class the currently implemented device, which is likely preferrable. | ||
|
||
Barring the above simple solution, one must work from scratch. | ||
It is best to begin by determining the **labscript** device class to inherit from: `Psuedoclock`, `Device`, `IntermediateDevice`. | ||
The first is for implementing Psuedoclock devices, the second is for generic devices that are not hardware timed by a pseudoclock, and the last is for hardware timed device that are connected to another device controlled via labscript. | ||
|
||
The `labscript_device` implements general configuration parameters, many of which are passed to the `BLACS_worker`. | ||
It also implements the `generate_code` method which converts **labscript** high-level instructions and saves them to the h5 file. | ||
|
||
The `BLACS_tab` defines the GUI widgets that control the device. | ||
This typically takes the form of using standard widgets provided by **labscript** for controlling **labscript** output primitives (ie `AnalogOut`, `DigitalOut`,`DDS`, etc). | ||
This configuration is done in the `initialiseGUI` method. | ||
This also links directly to the appropriate BLACS workers. | ||
|
||
The `BLACS_worker` handles communication with the hardware itself and often represents the bulk of the work required to implement a new labscript device. | ||
In general, it should provide five different methods: | ||
|
||
* `init`: This method initialised communications with the device. Not to be confused with the standard python class `__init__` method. | ||
* `program_manual`: This method allows for user control of the device via the `BLACS_tab`, setting outputs to the values set in the `BLACS_tab` widgets. | ||
* `check_remote_values`: This method reads the current settings of the device, updating the `BLACS_tab` widgets to reflect these values. | ||
* `transition_to_buffered`: This method transitions the device to buffered shot mode, reading the shot h5 file and taking the saved instructions from `labscript_device.generate_code` and sending the appropriate commands to the hardware. | ||
* `transition_to_manual`: This method transitions the device from buffered to manual mode. It does any necessary configuration to take the device out of buffered mode and is used to read an measurements and save them to the shot h5 file as results. | ||
|
||
The `runviewer_parser` takes shot h5 files, reads the saved instructions, and allows you to view them in **runviewer** in order to visualise experiment timing. | ||
|
||
Code Organization | ||
~~~~~~~~~~~~~~~~~ | ||
|
||
There are currently two supported file organization styles for a labscript-device. | ||
|
||
The old style has the `labscript_device`, `BLACS_tab`, `BLACS_worker`, and `runviewer_parser` all in the same file, which typically has the same name as the `labscript_device` class name. | ||
|
||
The new style allows for arbitrary code organization, but typically has a folder named after the `labscript_device` with each device component in a different file (ie `labscript_devices.py`, `BLACS_workers.py`, etc). | ||
With this style, the folder requires an `__init__.py` file (which can be empty) as well as a `register_classes.py` file. | ||
This file imports :obj:`<labscript-utils:labscript_utils.device_registry>` via | ||
|
||
.. code-block:: python | ||
from labscript_devices import register_classes | ||
This function informs **labscript** where to find the necessary classes during import. An example for the `NI_DAQmx` device is | ||
|
||
.. code-block:: python | ||
register_classes( | ||
'NI_DAQmx', | ||
BLACS_tab='labscript_devices.NI_DAQmx.blacs_tabs.NI_DAQmxTab', | ||
runviewer_parser='labscript_devices.NI_DAQmx.runviewer_parsers.NI_DAQmxParser', | ||
) | ||
Contributions to **labscript-devices** | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
If you decide to implement a labscript-device for controlling new hardware, we highly encourage you to consider making a pull-request to the **labscript-devices** repository in order to add your work to the **labscript-suite**. | ||
Increasing the list of supported devices is an important way for the **labscript-suite** to continue to grow, allowing new users to more quickly get up and running with hardware they may already have. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
Devices | ||
========= | ||
|
||
Here is a list of all the currently supported devices. | ||
|
||
|
||
Pseudoclocks | ||
~~~~~~~~~~~~ | ||
|
||
Pseudoclocks provide the timing backbone of the labscript_suite. | ||
These devices produce hardware-timed clocklines that trigger other device outputs and acquisitions. | ||
Many pseudoclock devices also include other types of outputs, including digital voltage and DDS frequency synthesizers. | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
devices/pulseblaster | ||
devices/pulseblaster_no_dds | ||
devices/opalkellyXEM3001 | ||
devices/pineblaster | ||
devices/prawnblaster | ||
devices/rfblaster | ||
|
||
NI DAQS | ||
~~~~~~~~~~~~ | ||
|
||
The NI_DAQmx device provides a generic interface for National Instruments data acquisition hardware. | ||
This includes digital and analog voltage I/O. These input/outputs can be either static or hardware-timed dynamically changing variables. | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
devices/ni_daqs | ||
|
||
Cameras | ||
~~~~~~~~~~~~ | ||
|
||
The camera devices provide interfaces for using various scientific cameras to acquire hardware-timed images during an experiment. | ||
They are organized by the programming API the underlies the communication to the device. | ||
The "master" camera class which provides the core functionality and from which the others derive is the IMAQdx class. | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
devices/IMAQdx | ||
devices/pylon | ||
devices/flycapture2 | ||
devices/spinnaker | ||
devices/andorsolis | ||
|
||
|
||
Frequency Sources | ||
~~~~~~~~~~~~~~~~~ | ||
|
||
These devices cover various frequency sources that provide either hardware-timed frequency, amplitude, or phase updates or static frequency outputs. | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
devices/novatechDDS9m | ||
devices/phasematrixquicksyn | ||
|
||
|
||
Miscellaneous | ||
~~~~~~~~~~~~~~~ | ||
|
||
These devices cover other types of devices. | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
devices/alazartechboard | ||
devices/lightcrafterdmd | ||
devices/tekscope | ||
devices/zaberstagecontroller | ||
|
||
|
||
Other | ||
~~~~~~~~~~~~~~ | ||
|
||
These devices provide dummy instruments for prototyping and testing purposes of the rest of the labscript_suite as well as the FunctionRunner device which can run arbitrary code post-shot. | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
devices/functionrunner | ||
devices/dummypseudoclock | ||
devices/dummyintermediate | ||
devices/testdevice | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
IMAQdx Cameras | ||
============== | ||
|
||
Overview | ||
~~~~~~~~ | ||
|
||
The "master" camera device from which all others derive. | ||
|
||
.. autosummary:: | ||
labscript_devices.IMAQdxCamera.labscript_devices | ||
labscript_devices.IMAQdxCamera.blacs_tabs | ||
labscript_devices.IMAQdxCamera.blacs_workers | ||
|
||
Installation | ||
~~~~~~~~~~~~ | ||
|
||
|
||
Usage | ||
~~~~~ | ||
|
||
|
||
Detailed Documentation | ||
~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
.. automodule:: labscript_devices.IMAQdxCamera | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:private-members: | ||
|
||
.. automodule:: labscript_devices.IMAQdxCamera.labscript_devices | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:private-members: | ||
|
||
.. automodule:: labscript_devices.IMAQdxCamera.blacs_tabs | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:private-members: | ||
|
||
.. automodule:: labscript_devices.IMAQdxCamera.blacs_workers | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:private-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Alazar Tech Board | ||
================= | ||
|
||
A labscript device class for data acquisition boards made by Alazar Technologies Inc (ATS). | ||
|
||
Installation | ||
~~~~~~~~~~~~ | ||
|
||
This device requires the atsapi.py wrapper. It should be installed into site-packages or | ||
kept in the local directory. | ||
|
||
It also uses the tqdm progress bar, which is not a standard dependency for the labscript-suite. | ||
|
||
Detailed Documentation | ||
~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
.. automodule:: labscript_devices.AlazarTechBoard | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:member-order: bysource | ||
:private-members: |
Oops, something went wrong.