calibration_screen.h 601 B

123456789101112131415161718192021
  1. /*
  2. * calibration_screen.h
  3. *
  4. * Created on: Jan 12, 2021
  5. * Author: David Original work by Jose (PTDreamer), 2017
  6. */
  7. #ifndef GRAPHICS_GUI_CALIBRATION_SCREEN_H_
  8. #define GRAPHICS_GUI_CALIBRATION_SCREEN_H_
  9. #include "screen.h"
  10. extern screen_t Screen_edit_calibration;
  11. extern screen_t Screen_edit_calibration_start;
  12. extern screen_t Screen_edit_calibration_adjust;
  13. extern screen_t Screen_edit_calibration_input;
  14. void calibration_screen_setup(screen_t *scr);
  15. void cal_screenUpdate(screen_t *scr);
  16. void editcalibration_screenDraw(screen_t *scr);
  17. #endif /* GRAPHICS_GUI_CALIBRATION_SCREEN_H_ */