Unitree Lidar SDK
What is this?
As you know, the official SDK is not available for rust users since it it written in C++. This project is a wrapper for the official SDK that allows you to use the SDK in rust.
Supported platforms
- Linux x86_64
- Linux aarch64
Installation
From crates.io
The static libraries are included in the published crate, so no additional setup is required!
From Source
How to use?
let mut reader = new.unwrap;
reader.start_lidar;
let mut stream = reader.into_stream;
while let Some = stream.next
How to build?