- Accelerate the authoring of tests which rely on hardware instruments.
- Provide low-code integration with Nominal tools like Connect and Core.
- Define entry points for creating instrument interfaces and drivers that integrate with the library.
- Provide abstractions that allow code reuse across various instrument models.
Problem Space: Before and After
Before: DAQ to Nominal Core
Here’s what is required to read data from various DAQ devices and stream data to Nominal Core.LabJack T-Series Devices
LabJack T-Series Devices
NI DAQ Devices
NI DAQ Devices
After: InstroDAQ
Here’s the same workflow using the Nominal Instrumentation library’sInstroDAQ.
Key Concepts of Nominal Instrumentation
- Code to an interface, not the specific instrument in use.
- Automatic data publishing to Nominal Core and Nominal Connect out of the box by way of a customizable
Publisherinterface. - Configurable background daemons read and expose measurements to your script and your publishers.
Two ways to get data
You can get measurements into your script in two ways. Both options publish data whenever a measurement is produced. The difference is who triggers the reads and how often.| Background acquisition | On-demand acquisition | |
|---|---|---|
| How | Call start(). A background daemon fetches from the instrument at a fixed, configurable rate. Use method get_channel() to pull the latest N values into your script if/when you need them. | Skip start(). Call the instrument’s methods (e.g. read_analog(), get_voltage()) only when you want a measurement. Each call reads from the device and publishes the result. |
| Best for | Simpler top-level apps where data should always be available and publishing. | Applications that only need measurements at specific times; lower system and bus usage. DMMs are a great example. |
RecommendationNominal recommends the background daemon pattern for most workflows. Data is always available and publishing, and it often simplifies application code, especially for bufferred acquisitions from a DAQ where you’d need to manage servicing a buffer yourself.Depending on your application, you may never need to call
get_channel(), but the background daemon will always publish measurements for later analysis in tools like Nominal Core.High Level Architecture
- Instrument Types / HALs: Distinct classes for each type of instrument (e.g., DAQ, PSU, ELoad, I2C), each providing an opinionated and unified usage model. This design exposes a tailored interface that reflects typical usage patterns, making common workflows consistent across different vendors and models.
- Drivers: Vendor- or model-specific drivers that handle low-level communication intricacies. HALs rely on these drivers to implement vendor- or model-specific details within the context of their higher level usage model.
- Publishers: Components responsible for recording or transmitting instrument data and commands. For example, streaming measurement data to a dataset.

PublishersData is published as a direct result of an instrument method being called.For example, when you call
InstroPSU.get_voltage(), this not only queries the instrument for the voltage but also causes all attached Publishers to publish the measurement response automatically.This makes it easy to ensure measurements and state changes are consistently recorded or streamed without explicitly managing yourself.Instrument Types
These are the current instrument types that have been developed by Nominal and available out of the box.InstroPSU: programmable Power SuppliesInstroDAQ: data Acquisition devicesInstroELoad: electronic LoadsInstroDMM: digital MultimetersI2CInterface: I2C master for communicating to peripherals on an I2C busModbusDevice: Modbus register/coil device (TCP or RTU)
Drivers
These are the current vendor/model specific drivers that have been developed by Nominal and are available out of the box.InstroPSU- B&K Precision
- Siglent
- Rigol
- TDK Lambda
InstroDAQ- National Instruments (NI)
- LabJack T-Series
- Measurement Computing (MCC)
- Keysight 34980
InstroELoad- B&K Precision 85xx Series
I2CInterface- Total Phase Aardvark
InstroDMM- Keithley 2400
- Agilent/HP/Keysight 34401A
Publishers
These are the current Publishers that have been developed by Nominal and available out of the box.NominalCorePublisher: sends data to a Nominal Core datasetNominalConnectPublisher: sends data to Nominal Connect client