Unofficial device driver for Leptrino force torque sensors.
Line up of Leptrino sensor is available here.
Inspired the works of ROS package (It is written in C/C++ and for ROS).
use leptrino_force_torque_sensor::{LeptrinoSensor, Product};
let mut sensor = LeptrinoSensor::open(Product::Pfs055Ya251U6, "/dev/ttyUSB0").unwrap();
let wrench = sensor.update().unwrap();
println!("{:?}", wrench);
libudev-dev
is required under Linux environment. Please install it by
$ sudo apt install libudev-dev
It may be required to customize udev rules if you use usb-connected sensors.
This shell script can be useful for customize (see the file in detail).
- Clone this repository.
- Setup udev rule by using this shell script.
- Connect your sensor.
- Run the example by
cargo run --example demo
MIT
I tested this crate only by Pfs055Ya251U6 sensor because I have no other Leptrino sensor.