EasyDAQ is a test software application intended for demonstrating the Stream Mode operation of openDAQ. This demo is compatible with Python 3.X.
OpenDAQ is an open source data acquisition instrument, which provides user several physical interaction capabilities such as analog inputs and outputs, digital inputs and outputs, timers and counters.
Through a USB connection, openDAQ brings all the information that it captures to a host computer, where you can decide how to process, display and store it. Several demos and examples are provided in website's support page. (http://www.open-daq.com/paginas/support)
Please, go to http://www.open-daq.com for additional info. For support, e-mail to [email protected]
You will need administrator rights (root access) to install this package system-wide.
EasyDAQ demo will require to install matplotlib and PyQt5 packages. To install them:
$ pip3 install matplotlib==2.2.5
$ pip3 install pyqt5
EasyDAQ
To install the last stable version:
$ pip3 install easydaq
To install the development version (it is highly recommended to use a virtual environment for this):
$ git clone github.com/opendaq/easydaq
$ cd easydaq
$ python setup.py install
In any case, if for any reason the setup fails, EasyDAQ demo will require these others packages:
-
opendaq
-
numpy
-
serial
All these packages are available on pip. To install them:
$ pip3 install "package"