oled.h 458 B

12345678910111213141516171819
  1. /*
  2. * oled.h
  3. *
  4. * Created on: Jan 12, 2021
  5. * Author: David Original work by Jose (PTDreamer), 2017
  6. */
  7. #ifndef GRAPHICS_GUI_OLED_H_
  8. #define GRAPHICS_GUI_OLED_H_
  9. #include "screen.h"
  10. void oled_addScreen(screen_t *screen, uint8_t index);
  11. void oled_draw(void);
  12. void oled_init(RE_Rotation_t (*Rotation)(RE_State_t*), RE_State_t *State);
  13. void oled_processInput(void);
  14. void oled_update(void);
  15. void oled_handle(void);
  16. #endif /* GRAPHICS_GUI_OLED_H_ */