sen66-interface 1.1.0

An I2C driver for the SEN66 sensor in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![cfg_attr(not(test), no_std)]
#![doc = include_str!("../README.md")]
#![deny(missing_docs)]

pub mod command;
pub mod configuration;
pub mod data;
pub mod error;
mod interface;
mod util;

#[cfg(feature = "async")]
/// Async interface for the SEN66
pub use interface::asynch;

#[cfg(feature = "blocking")]
/// Blocking interface for the SEN66
pub use interface::blocking;