humidity_core/
lib.rs

1//! # Core library for the hygrometer project.
2//!
3//! Provides a common set of bare-metal utilities tailored for the soil moisture
4//! project, however the plan is that this crate becomes a general toolbox with
5//! useful tooling that can be re-used across a variety of embedded projects
6//! without having to re-invent the wheel each time.
7//!
8//! This package purposedly does not depend on any other package.
9//!
10#![no_std]
11
12pub mod historical;
13pub mod sample;
14pub mod sensors;
15pub mod serde;
16pub mod shared;