htop/unsupported/Battery.c

9 lines
146 B
C
Raw Normal View History

2020-09-07 09:52:42 +00:00
#include <math.h>
2015-03-16 06:16:18 +00:00
#include "BatteryMeter.h"
void Battery_getData(double* level, ACPresence* isOnAC) {
2020-09-07 09:52:42 +00:00
*level = NAN;
2015-03-16 06:16:18 +00:00
*isOnAC = AC_ERROR;
}