| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
These are example measurements for use with InstrumentStudio 2026 Q1 or later.
For best results, use the example measurements corresponding to the version of InstrumentStudio that you are using. Newer examples may demonstrate features that are not available in older versions of InstrumentStudio.
| InstrumentStudio Version | Release | Download |
|---|---|---|
| 2026 Q1 | 3.1.0 | measurement-plugin-python-examples-3.1.0.zip |
| 2025 Q4 | 3.0.1 | measurement-plugin-python-examples-3.0.1.zip |
| 2025 Q3 | 2.3.1 | measurement-plugin-python-examples-2.3.1.zip |
| 2025 Q2 | 2.3.0 | measurement-plugin-python-examples-2.3.0.zip |
| 2025 Q1 | 2.2.0 | measurement-plugin-python-examples-2.2.0.zip |
| 2024 Q4 | 2.1.0 | measurement-plugin-python-examples-2.1.0.zip |
| 2024 Q3 | 2.0.0 | measurement-plugin-python-examples-2.0.0.zip |
| 2024 Q2 | 1.4.0 | measurementlink-python-examples-1.4.0.zip |
| Older versions | See releases page |
The TestStand sequence files associated with each example are saved in TestStand 2021 SP1.
For more details about a specific example, see the README.md file included with the example.
The example measurements are Poetry-based projects. Follow the steps below to set up an example measurement:
Install poetry. Refer to https://python-poetry.org/docs/#installation for information on installing Poetry.
Open a command prompt and change the working directory to the directory of the example measurement you want to work with.
cd <path_of_example_measurement>
REM Example: cd "..\measurement-plugin-python\examples\nidcpower_source_dc_voltage"Run poetry install. This command creates/updates the virtual environment (.venv) and installs the needed dependencies (including ni-measurement-plugin-sdk-service package) into the virtual environment.
poetry installStart the discovery service if not already started.
Use poetry run to run the measurement service:
poetry run python measurement.pyTo statically register an example measurement service with the NI Discovery Service, do the following:
Note Do not copy the .venv subdirectory—the virtual environment must be re-created in the new location.
Create a virtual environment in the new location by opening a command prompt to the new example directory under C:\ProgramData and running poetry install.
cd <path_of_example_measurement>
REM Example: cd "C:\ProgramData\National Instruments\Plug-Ins\Measurements\dc_measurement"
poetry installOnce the example measurement service is statically registered, the NI Discovery Service makes it visible in supported NI applications.
Note To set up and statically register all of the example measurements, run install_examples.py.
| Back | FazBrowse Home | New Git URL |