stuff-from-scratch/src/base/device/power/Battery.cpp
2024-01-03 09:13:23 +00:00

11 lines
No EOL
193 B
C++

#include "Battery.h"
#include "File.h"
String Battery::get_capacity()
{
String content;
File f("/sys/class/power_supply/BAT1/capacity");
f.readText(content);
return content;
}