main_screen.h 433 B

123456789101112131415161718192021
  1. /*
  2. * main_screen.h
  3. *
  4. * Created on: Jan 12, 2021
  5. * Author: David Original work by Jose (PTDreamer), 2017
  6. */
  7. #ifndef GRAPHICS_GUI_MAIN_SCREEN_H_
  8. #define GRAPHICS_GUI_MAIN_SCREEN_H_
  9. #include "screen.h"
  10. extern screen_t Screen_main;
  11. void main_screen_setup(screen_t *scr);
  12. void main_screen_draw(screen_t *scr);
  13. extern volatile uint16_t seconds2;
  14. extern volatile uint16_t count;
  15. #endif /* GRAPHICS_GUI_MAIN_SCREEN_H_ */