Skip to main content
Skip table of contents

LJM Library Overview

LJM is LabJack's free, cross-platform driver / library for simplifying device communication. It supports the LabJack T-Series devices and the LabJack Digit-Series devices.

Download

See the LJM installer page to download.

Documentation

See the following LJM User's Guide.

Features

Cross-Platform

Support for Windows, macOS, and Linux allows for the same code to be run on different operating systems with the same results, whether it's on your Windows desktop, MacBook laptop, or Raspberry Pi running a distribution of Linux.

Supported In Multiple Languages

Written in C++ with a C API, LabJack maintains and supports wrappers for many programing languages.

C/C++

#include "LabJackM.h"

...

int error, handle;

double voltage;

error = LJM_OpenS("T7", "USB", "ANY", &handle); // Read the voltage on AIN0

error = LJM_eReadName(handle, "AIN0", &voltage);

...

For more LJM C/C++ code, see the C/C++ Examples page.

Python

from labjack import ljm

handle = ljm.openS("T7", "USB", "ANY")

# Read the voltage on AIN0

voltage = ljm.eReadName(handle, "AIN0")

For more LJM Python code, see the Python Examples page.

MATLAB

ljmAsm = NET.addAssembly('LabJack.LJM');

...

[ljmError, handle] = LabJack.LJM.OpenS('T7', 'USB', 'ANY', handle);

% Read the voltage on AIN0

[ljmError, voltage] = LabJack.LJM.eReadName(handle, 'AIN0', 0);

...

For more LJM MATLAB code, see the MATLAB Examples page.

C# .NET

using LabJack;

...

int handle;

LJM.OpenS("T7", "USB", "ANY", ref handle);

// Read the voltage on AIN0

double voltage;

LJM.eReadName(handle, "AIN0", ref voltage);

...

For more LJM C# .NET code, see the C# .NET Examples page.

LabVIEW

For more LJM LabVIEW code, see the LabVIEW Examples page.

Some other supported languages:

LJM's API allows for easy integration into most languages. If the language you use isn't currently supported, feel free to contact us for assistance in integrating LJM into your project.

LJM Is For Any Level Of Expertise

You don't need to be familiar with Modbus to use LJM. Simply use LJM's Single Value Functions for direct access to all the features your LabJack device provides.

If you do prefer to use Modbus, LJM's Raw Byte Functions provide byte-level control to manually send and receive Modbus packets.

Modbus Interpretation

Using LJM's name-to-address map, you can communicate with LabJack devices using the readable names of data values, such as AIN0, AIN0_RANGE, ETHERNET_IP, or WIFI_STATUS.

LJM provides functions that convert readable Modbus register names to a register addresses, such as LJM_NameToAddress. Or, you can directly interact with your LabJack device using the Name-style Single Value Functions. (Although you can use the Address-style Easy functions if you prefer.)

You can easily look up Modbus registers on the Modbus Map page.

Easy Device Connection

Connecting to a LabJack device is simple using the LJM Open Functions. You can open a connection to the first found LabJack device or connect to a particular device. A particular device can be opened by the device IP address, serial number, or by a customizable device name. You can also filter which device you connect to based on the connection type or the device type.

Configurable Behavior

Customize the behavior of the LJM library to fit your needs. See the full list of Configuration Parameters.

You can also put a configuration file on your system and load it into LJM, so that one configuration that works well can be loaded for multiple programs. (It's also easy to edit!)

Questions?

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.