rsiot/components/cmp_esp_led/mod.rs
//! Компонент для управления светодиодными лентами
//! TODO - рассмотреть возможность использования esp-hal-smartled
mod component;
mod config;
mod error;
mod fn_process;
pub use component::Cmp;
pub use config::{Config, ConfigRgb};
pub use error::Error;
type Result<T> = std::result::Result<T, Error>;