Skip to main content

device_envoy_core/
lib.rs

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;
8pub mod clock_sync;
9pub mod cyd;
10pub mod dns;
11pub mod error;
12pub mod flash_block;
13pub mod ir;
14pub mod lcd_text;
15pub mod led;
16pub mod led2d;
17pub mod led4;
18pub mod led_strip;
19#[cfg(feature = "host")]
20pub mod memory;
21pub mod pixel_target;
22pub mod rfid;
23pub mod servo;
24#[doc(hidden)]
25pub mod servo_player;
26#[cfg(feature = "wifi")]
27pub mod time_sync;
28#[cfg(feature = "host")]
29mod to_png;
30#[cfg(feature = "wasm")]
31pub mod wasm;
32pub mod wifi_auto;
33
34pub use error::{Error, Result, UnwrapInfallible};
35/// Used internally by other macros.
36#[doc(hidden)]
37pub use paste::paste as __paste;