Skip to main content

rsiot/components/cmp_esp_speed/
mod.rs

1//! Компонент измерения скорости
2
3mod component;
4mod config;
5mod error;
6mod fn_process;
7mod int_msg;
8mod task_edge_detect;
9mod task_send;
10mod task_tick;
11
12pub use {
13    component::{COMPONENT_NAME, Cmp},
14    config::Config,
15    error::Error,
16};
17
18type Result<T> = std::result::Result<T, Error>;