Battery MONitor, log battery/power status on stdout
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
bmon/bmon.c

10 lines
224 B

#include <stdio.h>
#include <stdlib.h>
char *bat_power_path = "/sys/class/power_supply/BAT1/energy_now";
char *bat_capacity_path = "/sys/class/power_supply/BAT1/capacity";
int main (int argc, char *argv[])
{
return 0;
}