battery_n810.h 221 B

1234567891011121314
  1. #ifndef BACKEND_BATTERY_N810_H_
  2. #define BACKEND_BATTERY_N810_H_
  3. #include "battery.h"
  4. struct battery_n810 {
  5. struct battery battery;
  6. struct fileaccess *level_file;
  7. int charge;
  8. };
  9. #endif /* BACKEND_BATTERY_N810_H_ */