ljmrs

Crates.ioljmrs
lib.rsljmrs
version
sourcesrc
created_at2023-09-07 11:39:25.625816+00
updated_at2025-05-08 10:22:04.305526+00
descriptionLabJack LJM Bindings for Rust
homepage
repository
max_upload_size
id966134
Cargo.toml error:TOML parse error at line 17, column 1 | 17 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
Ben White (bennjii)

documentation

README

ljmrs

A rust library which allows you to connect with the LabJack T7 and T8 series through the C/C++ Bindings. This is a rust abstraction layer for stronger types and safety.

The library documentation is under the [ljm] module. You can add the crate with cargo add ljmrs.

Support

This does not support every function yet, you are welcome to create a PR to add any functions you want.

The official documentation from LabJack is found here. ljm-rs simply provides abstraction to the C/C++ library, through the libloading crate.

Examples

Examples are found in the /examples folder. To try an example, run the following:

cargo run --example <example_name>

For example:

# cargo run --example info
Opened LabJack, got handle: 1
Got IP, 109.61.99.68

Addendum

Note, running on MacOS with an ARM CPU requires newer versions of LabJack software, found here. Alternatively, you can use Rosetta 2 with older software, and the following command:

cargo build && arch -x86_64 ./target/x86_64-apple-darwin/debug/ljm-rs
Commit count: 0

cargo fmt