EPD_2in13b_V4_test.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /*****************************************************************************
  2. * | File : EPD_2in13b_V4_test.c
  3. * | Author : Waveshare team
  4. * | Function : 2.13inch B V4 e-paper test demo
  5. * | Info :
  6. *----------------
  7. * | This version: V1.0
  8. * | Date : 2022-04-21
  9. * | Info :
  10. * -----------------------------------------------------------------------------
  11. #
  12. # Permission is hereby granted, free of charge, to any person obtaining a copy
  13. # of this software and associated documnetation files (the "Software"), to deal
  14. # in the Software without restriction, including without limitation the rights
  15. # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  16. # copies of the Software, and to permit persons to whom the Software is
  17. # furished to do so, subject to the following conditions:
  18. #
  19. # The above copyright notice and this permission notice shall be included in
  20. # all copies or substantial portions of the Software.
  21. #
  22. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  23. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  24. # FITNESS OR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  25. # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  26. # LIABILITY WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  27. # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  28. # THE SOFTWARE.
  29. #
  30. ******************************************************************************/
  31. #include "EPD_Test.h"
  32. #include "EPD_2in13b_V4.h"
  33. int EPD_test(void)
  34. {
  35. printf("EPD_2IN13B_V4_test Demo\r\n");
  36. if(DEV_Module_Init()!=0){
  37. return -1;
  38. }
  39. printf("e-Paper Init and Clear...\r\n");
  40. EPD_2IN13B_V4_Init();
  41. EPD_2IN13B_V4_Clear();
  42. DEV_Delay_ms(500);
  43. //Create a new image cache named IMAGE_BW and fill it with white
  44. UBYTE *BlackImage, *RYImage; // Red or Yellow
  45. UWORD Imagesize = ((EPD_2IN13B_V4_WIDTH % 8 == 0)? (EPD_2IN13B_V4_WIDTH / 8 ): (EPD_2IN13B_V4_WIDTH / 8 + 1)) * EPD_2IN13B_V4_HEIGHT;
  46. if((BlackImage = (UBYTE *)malloc(Imagesize)) == NULL) {
  47. printf("Failed to apply for black memory...\r\n");
  48. return -1;
  49. }
  50. if((RYImage = (UBYTE *)malloc(Imagesize)) == NULL) {
  51. printf("Failed to apply for red memory...\r\n");
  52. return -1;
  53. }
  54. printf("NewImage:BlackImage and RYImage\r\n");
  55. Paint_NewImage(BlackImage, EPD_2IN13B_V4_WIDTH, EPD_2IN13B_V4_HEIGHT, 90, WHITE);
  56. Paint_NewImage(RYImage, EPD_2IN13B_V4_WIDTH, EPD_2IN13B_V4_HEIGHT, 90, WHITE);
  57. //Select Image
  58. Paint_SelectImage(BlackImage);
  59. Paint_Clear(WHITE);
  60. Paint_SelectImage(RYImage);
  61. Paint_Clear(WHITE);
  62. #if 1 // show image for array
  63. printf("show image for array\r\n");
  64. EPD_2IN13B_V4_Display(gImage_2in13b_V4b, gImage_2in13b_V4r);
  65. DEV_Delay_ms(2000);
  66. #endif
  67. #if 1 // Drawing on the image
  68. /*Horizontal screen*/
  69. //1.Draw black image
  70. printf("Draw black image\r\n");
  71. Paint_SelectImage(BlackImage);
  72. Paint_Clear(WHITE);
  73. Paint_DrawPoint(5, 70, BLACK, DOT_PIXEL_1X1, DOT_STYLE_DFT);
  74. Paint_DrawPoint(5, 80, BLACK, DOT_PIXEL_2X2, DOT_STYLE_DFT);
  75. Paint_DrawLine(20, 70, 50, 100, BLACK, DOT_PIXEL_1X1, LINE_STYLE_SOLID);
  76. Paint_DrawLine(50, 70, 20, 100, BLACK, DOT_PIXEL_1X1, LINE_STYLE_SOLID);
  77. Paint_DrawRectangle(60, 70, 90, 100, BLACK, DOT_PIXEL_1X1, DRAW_FILL_FULL);
  78. Paint_DrawCircle(125, 85, 15, BLACK, DOT_PIXEL_1X1, DRAW_FILL_EMPTY);
  79. Paint_DrawString_CN(5, 15, "ÄãºÃabc", &Font12CN, WHITE, BLACK);
  80. //2.Draw red image
  81. printf("Draw red image\r\n");
  82. Paint_SelectImage(RYImage);
  83. Paint_Clear(WHITE);
  84. Paint_DrawPoint(5, 90, RED, DOT_PIXEL_3X3, DOT_STYLE_DFT);
  85. Paint_DrawPoint(5, 100, RED, DOT_PIXEL_4X4, DOT_STYLE_DFT);
  86. Paint_DrawLine(125, 70, 125, 100, RED, DOT_PIXEL_1X1, LINE_STYLE_DOTTED);
  87. Paint_DrawLine(110, 85, 140, 85, RED, DOT_PIXEL_1X1, LINE_STYLE_DOTTED);
  88. Paint_DrawRectangle(20, 70, 50, 100, RED, DOT_PIXEL_1X1, DRAW_FILL_EMPTY);
  89. Paint_DrawCircle(165, 85, 15, RED, DOT_PIXEL_1X1, DRAW_FILL_FULL);
  90. Paint_DrawString_EN(5, 0, "waveshare Electronics", &Font12, BLACK, WHITE);
  91. Paint_DrawNum(5, 50, 987654321, &Font16, WHITE, RED);
  92. printf("EPD_Display\r\n");
  93. EPD_2IN13B_V4_Display(BlackImage, RYImage);
  94. DEV_Delay_ms(5000);
  95. #endif
  96. printf("Clear...\r\n");
  97. EPD_2IN13B_V4_Clear();
  98. printf("Goto Sleep...\r\n");
  99. EPD_2IN13B_V4_Sleep();
  100. free(BlackImage);
  101. free(RYImage);
  102. BlackImage = NULL;
  103. RYImage = NULL;
  104. DEV_Delay_ms(2000);//important, at least 2s
  105. // close 5V
  106. printf("close 5V, Module enters 0 power consumption ...\r\n");
  107. DEV_Module_Exit();
  108. return 0;
  109. }