Skip to main content

rsiot/components/cmp_linux_i2c_master/
mod.rs

1//! Опрос устройств по интерфейсу I2C
2
3mod component;
4mod config;
5mod error;
6mod fn_process;
7
8pub use component::{COMPONENT_NAME, Cmp};
9pub use config::Config;
10pub use error::Error;
11
12type Result<T> = std::result::Result<T, Error>;