1
0

display.h 385 B

1234567891011121314
  1. #pragma once
  2. #define DISPLAY_STATE_NO_CHANGE 0
  3. #define DISPLAY_STATE_STARTUP 1
  4. #define DISPLAY_STATE_POWEROFF 2
  5. #define DISPLAY_STATE_POWEROFF_LOWBAT 3
  6. #define DISPLAY_STATE_START_MESSAGE 4
  7. #define DISPLAY_STATE_CARD_OK 5
  8. #define DISPLAY_STATE_FILE_OPEN 6
  9. #define DISPLAY_STATE_FILE_CLOSED 7
  10. void display_refresh(unsigned char newstate);
  11. void display_state(unsigned char newstate);