apds9151 0.1.1

platform agnostic Rust driver for the APDS9151 Digital Proximity and RGB Color I2C Sensor
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![no_std]

mod register_access;
mod apds9151;
pub mod types;

pub use apds9151::*;
pub struct Apds9151<I2C> {
    i2c: I2C,
    address: u8,
}