Skip to main content

hal_mik32/
battery.rs

1//! Battery monitor HAL stub
2
3pub struct Battery;
4
5impl Battery {
6    pub fn new() -> Self {
7        Battery
8    }
9}