OpenChargeMicro/Software/src/gui.h

34 lines
433 B
C
Raw Normal View History

2018-11-25 16:58:13 +01:00
/*
* 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();
2018-11-25 22:04:09 +01:00
void gui_init();
2018-11-25 16:58:13 +01:00
void gui_print(int pNr, bool pStatus, struct time_t pTime, double pVoltage, int pCurrent, unsigned long int pCapacity);
2018-11-25 22:04:09 +01:00
void gui_write(char* str);
void gui_info();
2018-11-25 16:58:13 +01:00
};
#endif /* GUI_H_ */