PokittoBattery.h
Go to the documentation of this file.
1 /**************************************************************************/
35 /**************************************************************************/
36 
37 
38 #ifndef POKITTOBATTERY_H
39 #define POKITTOBATTERY_H
40 
41 #include <stdint.h>
42 #include "Pokitto_settings.h"
43 #include "GBcompatibility.h"
44 #include "PokittoGlobs.h"
45 
46 
47 namespace Pokitto {
48 
49 class Battery {
50 public:
51  static void begin();
52  static void update();
53  static bool show;
54  static uint8_t level;
55  static uint16_t voltage;
56  static uint16_t thresholds[NUM_LVL];
57  static uint8_t nextUpdate;
58 };
59 }
60 
61 #endif //POKITTOBATTERY_H
62 
Definition: PokittoBacklight.h:42
Definition: PokittoBattery.h:49