embedded_batteries_async/lib.rs
1#![doc = include_str!("../README.md")]
2#![no_std]
3#![warn(missing_docs)]
4
5/// Async Smart Battery Charger module
6pub mod charger;
7
8/// Async Smart Battery module
9pub mod smart_battery;
10
11/// Advanced Configuration and Power Interface (ACPI)
12/// Power Source and Power Meter Devices module
13pub use embedded_batteries::acpi;