sen66_interface/
lib.rs

1#![cfg_attr(not(test), no_std)]
2#![doc = include_str!("../README.md")]
3#![deny(missing_docs)]
4
5pub mod command;
6pub mod configuration;
7pub mod data;
8pub mod error;
9mod interface;
10mod util;
11
12#[cfg(feature = "async")]
13/// Async interface for the SEN66
14pub use interface::asynch;
15
16#[cfg(feature = "blocking")]
17/// Blocking interface for the SEN66
18pub use interface::blocking;