EPD_1in54_V3.h 436 B

1234567891011121314151617
  1. #ifndef __EPD_1IN54_V3_H_
  2. #define __EPD_1IN54_V3_H_
  3. #include "DEV_Config.h"
  4. // Display resolution
  5. #define EPD_1IN54_V3_WIDTH 200
  6. #define EPD_1IN54_V3_HEIGHT 200
  7. void EPD_1IN54_V3_Init(UBYTE mode);
  8. void EPD_1IN54_V3_Clear(void);
  9. void EPD_1IN54_V3_Display(UBYTE *Image, UBYTE *Image2);
  10. void EPD_1IN54_V3_DisplayPartBaseImage(UBYTE *Image);
  11. void EPD_1IN54_V3_DisplayPart(UBYTE *Image);
  12. void EPD_1IN54_V3_Sleep(void);
  13. #endif