initiated commitment

This commit is contained in:
Alessandro Mauri 2020-05-18 23:10:08 +02:00
commit ee639d444b
2 changed files with 11 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
**/*.out

10
bmon.c Normal file
View File

@ -0,0 +1,10 @@
#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;
}