sen5x/
lib.rs

1
2#![deny(unsafe_code)]
3#![cfg_attr(not(test), no_std)]
4
5pub mod sen5x;
6
7mod error;
8pub use error::Error;
9
10mod commands;
11pub use commands::Command;
12
13pub mod types;
14pub use types::SensorDataInt;
15
16mod utils;