1#![doc = include_str!("../README.md")]
2#![cfg_attr(target_os = "none", no_std)]
3
4pub mod audio_player;
5pub mod button;
6#[cfg(feature = "wifi")]
7pub(crate) mod clock;
8#[cfg(feature = "wifi")]
9pub mod clock_sync;
10pub mod flash_block;
11pub mod ir;
12pub mod lcd_text;
13pub mod led;
14pub mod led2d;
15pub mod led4;
16pub mod led_strip;
17pub mod rfid;
18pub mod servo;
19#[doc(hidden)]
20pub mod servo_player;
21#[cfg(feature = "wifi")]
22pub mod time_sync;
23#[cfg(feature = "host")]
24mod to_png;
25pub mod wifi_auto;
26
27#[doc(hidden)]
29pub use paste::paste as __paste;