ESP32.ino 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. #include "EPD_7in5h.h"
  2. #include "GUI_Paint.h"
  3. #include "fonts.h"
  4. #include "ImageData.h"
  5. void setup() {
  6. printf("EPD_7IN5H_test Demo\r\n");
  7. DEV_Module_Init();
  8. printf("e-Paper Init and Clear...\r\n");
  9. EPD_7IN5H_Init();
  10. EPD_7IN5H_Clear(EPD_7IN5H_WHITE); // White
  11. DEV_Delay_ms(2000);
  12. //Create a new image cache
  13. UBYTE *Image;
  14. UWORD Imagesize = ((EPD_7IN5H_WIDTH % 4 == 0)? (EPD_7IN5H_WIDTH / 4 ): (EPD_7IN5H_WIDTH / 4 + 1)) * EPD_7IN5H_HEIGHT;
  15. if((Image = (UBYTE *)malloc(Imagesize)) == NULL) {
  16. printf("Failed to apply for memory...\r\n");
  17. while(1);
  18. }
  19. printf("Paint_NewImage\r\n");
  20. Paint_NewImage(Image, EPD_7IN5H_WIDTH, EPD_7IN5H_HEIGHT, 0, EPD_7IN5H_WHITE);
  21. Paint_SetScale(4);
  22. #if 1 // show bmp
  23. EPD_7IN5H_Display(Image4color);
  24. DEV_Delay_ms(1500);
  25. #endif
  26. #if 1 // Drawing on the image
  27. //1.Select Image
  28. printf("SelectImage:BlackImage\r\n");
  29. Paint_SelectImage(Image);
  30. Paint_Clear(EPD_7IN5H_WHITE);
  31. // 2.Drawing on the image
  32. printf("Drawing:BlackImage\r\n");
  33. Paint_DrawPoint(10, 80, EPD_7IN5H_RED, DOT_PIXEL_1X1, DOT_STYLE_DFT);
  34. Paint_DrawPoint(10, 90, EPD_7IN5H_YELLOW, DOT_PIXEL_2X2, DOT_STYLE_DFT);
  35. Paint_DrawPoint(10, 100, EPD_7IN5H_BLACK, DOT_PIXEL_3X3, DOT_STYLE_DFT);
  36. Paint_DrawLine(20, 70, 70, 120, EPD_7IN5H_RED, DOT_PIXEL_1X1, LINE_STYLE_SOLID);
  37. Paint_DrawLine(70, 70, 20, 120, EPD_7IN5H_RED, DOT_PIXEL_1X1, LINE_STYLE_SOLID);
  38. Paint_DrawRectangle(20, 70, 70, 120, EPD_7IN5H_YELLOW, DOT_PIXEL_1X1, DRAW_FILL_EMPTY);
  39. Paint_DrawRectangle(80, 70, 130, 120, EPD_7IN5H_YELLOW, DOT_PIXEL_1X1, DRAW_FILL_FULL);
  40. Paint_DrawCircle(45, 95, 20, EPD_7IN5H_BLACK, DOT_PIXEL_1X1, DRAW_FILL_EMPTY);
  41. Paint_DrawCircle(105, 95, 20, EPD_7IN5H_BLACK, DOT_PIXEL_1X1, DRAW_FILL_FULL);
  42. Paint_DrawLine(85, 95, 125, 95, EPD_7IN5H_RED, DOT_PIXEL_1X1, LINE_STYLE_DOTTED);
  43. Paint_DrawLine(105, 75, 105, 115, EPD_7IN5H_YELLOW, DOT_PIXEL_1X1, LINE_STYLE_DOTTED);
  44. Paint_DrawString_EN(10, 0, "Red,yellow,white and black", &Font16, EPD_7IN5H_RED, EPD_7IN5H_YELLOW);
  45. Paint_DrawString_EN(10, 20, "Four color e-Paper", &Font12, EPD_7IN5H_YELLOW, EPD_7IN5H_BLACK);
  46. Paint_DrawString_CN(150, 20, "微雪电子", &Font24CN, EPD_7IN5H_RED, EPD_7IN5H_WHITE);
  47. Paint_DrawNum(10, 35, 123456, &Font12, EPD_7IN5H_RED, EPD_7IN5H_WHITE);
  48. printf("EPD_Display\r\n");
  49. EPD_7IN5H_Display(Image);
  50. DEV_Delay_ms(3000);
  51. #endif
  52. printf("Clear...\r\n");
  53. EPD_7IN5H_Clear(EPD_7IN5H_WHITE);
  54. printf("Goto Sleep...\r\n");
  55. EPD_7IN5H_Sleep();
  56. DEV_Delay_ms(2000);//important, at least 2s
  57. // close 5V
  58. printf("close 5V, Module enters 0 power consumption ...\r\n");
  59. DEV_Module_Exit();
  60. }
  61. void loop() {
  62. }