device-envoy-core 0.1.4

Shared traits and data types for device-envoy platform crates
Documentation
#![doc = include_str!("../README.md")]
#![cfg_attr(target_os = "none", no_std)]

pub mod audio_player;
pub mod button;
#[cfg(feature = "wifi")]
pub(crate) mod clock;
pub mod clock_sync;
pub mod cyd;
pub mod dns;
pub mod error;
pub mod flash_block;
pub mod ir;
pub mod lcd_text;
pub mod led;
pub mod led2d;
pub mod led4;
pub mod led_strip;
#[cfg(feature = "host")]
pub mod memory;
pub mod pixel_target;
pub mod rfid;
pub mod servo;
#[doc(hidden)]
pub mod servo_player;
#[cfg(feature = "wifi")]
pub mod time_sync;
#[cfg(feature = "host")]
mod to_png;
#[cfg(feature = "wasm")]
pub mod wasm;
pub mod wifi_auto;

pub use error::{Error, Result, UnwrapInfallible};
/// Used internally by other macros.
#[doc(hidden)]
pub use paste::paste as __paste;