esphome_native_api/lib.rs
1#![cfg_attr(not(feature = "std"), no_std)]
2
3pub mod proto;
4
5
6#[cfg(feature = "std")]
7pub mod parser;
8#[cfg(feature = "std")]
9pub mod esphomeapi;
10#[cfg(feature = "std")]
11pub mod esphomeserver;
12#[cfg(feature = "std")]
13mod frame;
14#[cfg(feature = "std")]
15mod packet_plaintext;
16// #[cfg(feature = "std")]
17#[cfg(feature = "std")]
18mod packet_encrypted;
19