11 lines
239 B
C
11 lines
239 B
C
#ifndef POWER_H
|
|
#define POWER_H
|
|
|
|
#include "SparkFunBQ27441/SparkFunBQ27441.h"
|
|
#include <esp_log.h>
|
|
|
|
/// Initializes the battery gas guage for getting battery stats.
|
|
void init_power_board();
|
|
uint16_t get_bat_voltage();
|
|
|
|
#endif /* POWER_H */ |