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, }