10 lines
174 B
C
10 lines
174 B
C
#pragma once
|
|
#include "config.h"
|
|
|
|
#ifdef FEATURE_BATTERY_MONITOR
|
|
void initBatteryADC();
|
|
float readBatteryVoltage();
|
|
int batteryPercent(float v);
|
|
void updateBattery();
|
|
#endif
|