embedded-batteries-async 0.3.4

An asynchronous Hardware Abstraction Layer (HAL) for battery fuel gauges and battery chargers used in embedded systems.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../README.md")]
#![no_std]
#![warn(missing_docs)]

/// Async Smart Battery Charger module
pub mod charger;

/// Async Smart Battery module
pub mod smart_battery;

/// Advanced Configuration and Power Interface (ACPI)
/// Power Source and Power Meter Devices module
pub use embedded_batteries::acpi;