#embedded-hal #no-alloc #no-std #vl53l0x

no-std vl53l0x-simple

A Rust driver for the VL53l0X TOF ranging sensor

2 unstable releases

0.2.0 Jul 31, 2024
0.1.0 Jul 15, 2024

#1418 in Embedded development

Download history 111/week @ 2024-07-11 14/week @ 2024-07-18 99/week @ 2024-07-25 38/week @ 2024-08-01

136 downloads per month

MIT/Apache

36KB
608 lines

A simple Rust driver for the VL53l0X TOF ranging sensor.

This crate is intentionally basic and does not implement all the features of the VL53l0X. It is designed to be a simple way to get distance readings from the sensor. PRs are welcome if you would like to add more features.

The overall architecture of this crate is based on the original C code and the Polulu Arduino library, but the interface has been greatly simplified and Rust-ified.

Usage

let mut tof = Vl53l0x::new(i2c, x_shut, 0x31, &clock_source).unwrap();

loop {
    if let Some(reading) = tof.try_read().unwrap() {
        println!("Distance: {}mm", reading);
    }
}

Dependencies

~56KB