LabJackPython icon indicating copy to clipboard operation
LabJackPython copied to clipboard

The official Python modules and classes for interacting with the LabJack U3, U6, UE9 and U12

Results 5 LabJackPython issues
Sort by recently updated
recently updated
newest added

The Class StreamDataReader uses the device object of the global scope. With this fix, the class StreamDataReader is independent of the particular device in this script and can be repurposed...

Optimization of U3.process_stream_data by using list comprehensions. The new version is roughly 4x faster, which allows sampling at 50 kHz on a Raspberry Pi 4.

The packaging of labjackpython could be much improved by: 1. providing a wheel so that people can just `pip install labjack` 2. putting all the files in one folder Doing...

I got an installation and library issue. I followed these installation steps for an installation on ubuntu 16.04. https://labjack.com/support/software/installers/exodriver/mac-and-linux/... The following code brings me to an undefined symbol for DigitalIO...

ctypes.c_byte is specified to be equivalent to a signed char (-128 to 127) but we were passing unsigned char values (0-255) so we should be using ctypes.c_ubyte: https://docs.python.org/3/library/ctypes.html#ctypes.c_byte This issue...