gui.h 325 B

12345678910111213141516171819
  1. /*
  2. * gui.h
  3. *
  4. * Created on: Jan 12, 2021
  5. * Author: David Original work by Jose (PTDreamer), 2017
  6. */
  7. #ifndef GRAPHICS_GUI_GUI_H_
  8. #define GRAPHICS_GUI_GUI_H_
  9. #include "oled.h"
  10. #include "screen.h"
  11. #include "gui_strings.h"
  12. extern u8g2_t u8g2;
  13. void guiInit(void);
  14. void guiDraw();
  15. #endif /* GRAPHICS_GUI_GUI_H_ */