This module supports LabJack Data Acquisition Devices
It has been tested with the U3-HV (https://labjack.com/products/u3)

Installation:
(see https://labjack.com/support/software/examples/ud/labjackpython)
The release provided on this page does not support Python3.

1.) Clone the LabJack repository
git clone https://github.com/labjack/LabJackPython.git

2.) Install the package
$> cd LabJackPython
$> sudo python3 setup.py install

3.) Clone the Exodriver package
git clone https://github.com/labjack/exodriver.git

4.) Install dependencies and the package
$> cd exodriver
$> sudo apt-get install libusb-1.0.0-dev build-essential
$> sudo ./install.sh

5.) Confirm packages are installed correctly
$> python3
>>> import u3
--should not be any errors --
<Ctrl-D to exit>

LabJack Documentation:
See: https://labjack.com/support/datasheets/u3/low-level-function-reference

Also from python CLI:
$> python3
>>> import u3
>>> help(u3) # overview of all modules
>>> help(u3.U3) #specific help for U3 commands

