1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![doc = include_str!("../README.md")]
pub mod driver;
pub use driver::{Ws2812Esp32RmtDriver, Ws2812Esp32RmtDriverError};
#[cfg(all(feature = "embedded-graphics-core", feature = "unstable"))]
pub mod lib_embedded_graphics;
#[cfg(all(feature = "smart-leds-trait", feature = "unstable"))]
pub mod lib_smart_leds;
#[cfg(all(feature = "smart-leds-trait", not(feature = "unstable")))]
mod lib_smart_leds;
#[cfg(feature = "smart-leds-trait")]
pub use lib_smart_leds::{LedPixelEsp32Rmt, Ws2812Esp32Rmt, RGBW8};
#[cfg(feature = "smart-leds-trait")]
pub use smart_leds_trait::RGB8;