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 error;
11pub mod flash_block;
12pub mod ir;
13pub mod lcd_text;
14pub mod led;
15pub mod led2d;
16pub mod led4;
17pub mod led_strip;
18pub mod rfid;
19pub mod servo;
20#[doc(hidden)]
21pub mod servo_player;
22#[cfg(feature = "wifi")]
23pub mod time_sync;
24#[cfg(feature = "host")]
25mod to_png;
26pub mod wifi_auto;
27
28pub use error::{Error, Result};
29
30#[doc(hidden)]
32pub use paste::paste as __paste;