rplidar.rs icon indicating copy to clipboard operation
rplidar.rs copied to clipboard

Rust driver for Slamtec RPLIDAR series

Results 4 rplidar.rs issues
Sort by recently updated
recently updated
newest added

FYI, to run A1 in RP4, below line should be added after port creation. (I forked mine from https://github.com/RandomStudio/rplidar.rs/tree/update-min BTW) ``` ... let dtr_result = serial_port.write_data_terminal_ready(false); ... ``` Anyway, thank...

This Pull Request attempts to leave the basic crate structure the same (`rpos_drv` is still a separate crate) while making some adjustments to get up to date with later Rust...

I was able to use your driver on OSX with the following modification of your sample: ``` let serial_port = serialport::open_with_settings(devicepath, &SerialPortSettings { baud_rate: 115200, ..SerialPortSettings::default()} ).unwrap(); ``` Would you...

The C++ driver works without any issues but this driver seems to fail when `start_scan()` is called. I tried the `ultra_simple` example. it fails with timeout message on version 0.5.0...