Examples using the gotmc ivi package, which proides a Go-based implementation of the Interchangeable Virtual Instrument (IVI) standard.
The IVI Specifications developed by the IVI Foundation provide standardized APIs for programming test instruments. The ivi package is a partial, Go-based implementation of the IVI Specifications, which are specified for C, COM, and .NET.
The main advantage of the ivi package is not having to learn the SCPI commands for each individual piece of test equipment. For instance, by using the ivi package both the Agilent 33220A and the Stanford Research Systems DS345 function generators can be programmed using one standard API. The only requirement for this is having an IVI driver for the desired test equipment.
Documentation can be found at either:
- https://godoc.org/github.com/gotmc/ivi-examples
- http://localhost:6060/pkg/github.com/gotmc/ivi-examples/ after running
$ godoc -http=:6060
Contributions are welcome! To contribute please:
- Fork the repository
- Create a feature branch
- Code
- Submit a pull request
Prior to submitting a pull request, please run:
$ make check
$ make lint
To update and view the test coverage report:
$ make cover
ivi-examples is released under the MIT license. Please see the LICENSE.txt file for more information.