rsiot/components/cmp_math/mod.rs
1//! Комонент для математической обработки данных
2
3mod algs;
4mod component;
5mod config;
6mod error;
7mod fn_process;
8mod task_input;
9mod task_output;
10
11pub use algs::{Algs, EmaKind, Gamma, downsampling, statistic};
12pub use component::{COMPONENT_NAME, Cmp};
13pub use config::{Config, ConfigBranch};
14pub use error::Error;