OpenChargeMicro/Software/src/gui.h

30 lines
368 B
C++

/*
* gui.h
*
* Created on: 25.11.2018
* Author: Hendrik Schutter
*/
#include "oled_ssd1306/oled_ssd1306.h"
#ifndef GUI_H_
#define GUI_H_
class gui{
private:
oled_ssd1306 oled;
public:
gui();
~gui();
void gui_print(int pNr, bool pStatus, struct time_t pTime, double pVoltage, int pCurrent, unsigned long int pCapacity);
};
#endif /* GUI_H_ */