Unofficial device driver for Wacoh-tech force-torque sensor written in pure Rust.
Inspired the works of Tokyo Opensource Robotics Kyokai Association (It is written in C/C++ and for ROS).
```rust use dynpickforcetorque_sensor::DynpickSensorBuilder;
let mut sensor = DynpickSensorBuilder::open("/dev/ttyUSB0") .andthen(|b| b.setsensitivitybybuiltindata()) .andthen(|b| b.build()) .unwrap();
sensor.zeroed_next().unwrap(); // Calibration
let wrench = sensor.update_wrench().unwrap(); println!("Force: {}, Torque: {}", wrench.force, wrench.torque); ```
libudev-dev
is required under Linux environment. Please install it by
$ sudo apt install libudev-dev
It may be required to customize udev rules.
This shell script can be useful for customize (see the file in detail).
cargo run --example demo
MIT
I tested this crate only by WDF-6M200-3 sensor because I have no other dynpick sensor.