Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds basic Enum widget support to BLACS tabs. EnumOutputs are intended to be used for controls that only allow discrete values (ie an Enum-like control). Very basic support for EnumWidgets was added in
labscript_utils
v3.0.0b1. This PR uses those base widgets to add support for them within a device tab.Example of EO widgets (from

output_classes.py
test script)Incantation within a DeviceTab will look like
I've also updated the test script within
device_base_class.py
to run and show the new functionality.It relies on a pre-compiled dummy connection table, which I've placed in a top level
tests
directory assuming we will eventually get to the point of implementing more rigorous testing.