EPD_4in2_V2_test.c 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. /*****************************************************************************
  2. * | File : EPD_4in2_V2_test.c
  3. * | Author : Waveshare team
  4. * | Function : 4.2inch e-paper V2 test demo
  5. * | Info :
  6. *----------------
  7. * | This version: V1.0
  8. * | Date : 2023-09-11
  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_4in2_V2.h"
  33. #include <string.h>
  34. int EPD_4in2_V2_test(void)
  35. {
  36. printf("EPD_4IN2_V2_test Demo\r\n");
  37. if(DEV_Module_Init()!=0){
  38. return -1;
  39. }
  40. printf("e-Paper Init and Clear...\r\n");
  41. EPD_4IN2_V2_Init();
  42. EPD_4IN2_V2_Clear();
  43. DEV_Delay_ms(500);
  44. //Create a new image cache
  45. UBYTE *BlackImage;
  46. /* you have to edit the startup_stm32fxxx.s file and set a big enough heap size */
  47. UWORD Imagesize = ((EPD_4IN2_V2_WIDTH % 8 == 0)? (EPD_4IN2_V2_WIDTH / 8 ): (EPD_4IN2_V2_WIDTH / 8 + 1)) * EPD_4IN2_V2_HEIGHT;
  48. if((BlackImage = (UBYTE *)malloc(Imagesize)) == NULL) {
  49. printf("Failed to apply for black memory...\r\n");
  50. return -1;
  51. }
  52. printf("Paint_NewImage\r\n");
  53. Paint_NewImage(BlackImage, EPD_4IN2_V2_WIDTH, EPD_4IN2_V2_HEIGHT, 0, WHITE);
  54. #if 1 // show bmp
  55. printf("show window BMP-----------------\r\n");
  56. Paint_SelectImage(BlackImage);
  57. Paint_Clear(WHITE);
  58. GUI_ReadBmp("./pic/100x100.bmp", 10, 10);
  59. EPD_4IN2_V2_Display(BlackImage);
  60. DEV_Delay_ms(2000);
  61. // EPD_4IN2_V2_Init_Fast(Seconds_1_5S);
  62. // printf("show bmp------------------------\r\n");
  63. // Paint_SelectImage(BlackImage);
  64. // GUI_ReadBmp("./pic/4in2.bmp", 0, 0);
  65. // EPD_4IN2_V2_Display_Fast(BlackImage);
  66. // DEV_Delay_ms(2000);
  67. #endif
  68. #if 1 // show image for array
  69. EPD_4IN2_V2_Init_Fast(Seconds_1_5S);
  70. printf("show image for array\r\n");
  71. Paint_SelectImage(BlackImage);
  72. Paint_Clear(WHITE);
  73. Paint_DrawBitMap(gImage_4in2);
  74. EPD_4IN2_V2_Display_Fast(BlackImage);
  75. DEV_Delay_ms(2000);
  76. #endif
  77. #if 1 // Drawing on the image
  78. EPD_4IN2_V2_Init();
  79. //1.Select Image
  80. printf("SelectImage:BlackImage\r\n");
  81. Paint_SelectImage(BlackImage);
  82. Paint_Clear(WHITE);
  83. // 2.Drawing on the image
  84. printf("Drawing:BlackImage\r\n");
  85. Paint_DrawPoint(10, 80, BLACK, DOT_PIXEL_1X1, DOT_STYLE_DFT);
  86. Paint_DrawPoint(10, 90, BLACK, DOT_PIXEL_2X2, DOT_STYLE_DFT);
  87. Paint_DrawPoint(10, 100, BLACK, DOT_PIXEL_3X3, DOT_STYLE_DFT);
  88. Paint_DrawLine(20, 70, 70, 120, BLACK, DOT_PIXEL_1X1, LINE_STYLE_SOLID);
  89. Paint_DrawLine(70, 70, 20, 120, BLACK, DOT_PIXEL_1X1, LINE_STYLE_SOLID);
  90. Paint_DrawRectangle(20, 70, 70, 120, BLACK, DOT_PIXEL_1X1, DRAW_FILL_EMPTY);
  91. Paint_DrawRectangle(80, 70, 130, 120, BLACK, DOT_PIXEL_1X1, DRAW_FILL_FULL);
  92. Paint_DrawCircle(45, 95, 20, BLACK, DOT_PIXEL_1X1, DRAW_FILL_EMPTY);
  93. Paint_DrawCircle(105, 95, 20, WHITE, DOT_PIXEL_1X1, DRAW_FILL_FULL);
  94. Paint_DrawLine(85, 95, 125, 95, BLACK, DOT_PIXEL_1X1, LINE_STYLE_DOTTED);
  95. Paint_DrawLine(105, 75, 105, 115, BLACK, DOT_PIXEL_1X1, LINE_STYLE_DOTTED);
  96. Paint_DrawString_EN(10, 0, "waveshare", &Font16, BLACK, WHITE);
  97. Paint_DrawString_EN(10, 20, "hello world", &Font12, WHITE, BLACK);
  98. Paint_DrawNum(10, 33, 123456789, &Font12, BLACK, WHITE);
  99. Paint_DrawNum(10, 50, 987654321, &Font16, WHITE, BLACK);
  100. Paint_DrawString_CN(130, 0, "ÄãºÃabc", &Font12CN, BLACK, WHITE);
  101. Paint_DrawString_CN(130, 20, "΢ѩµç×Ó", &Font24CN, WHITE, BLACK);
  102. printf("EPD_Display\r\n");
  103. // EPD_4IN2_V2_Display(BlackImage);
  104. EPD_4IN2_V2_Display(BlackImage);
  105. DEV_Delay_ms(2000);
  106. #endif
  107. #if 1
  108. printf("Partial refresh\r\n");
  109. Paint_NewImage(BlackImage, 200, 50, 0, WHITE);
  110. PAINT_TIME sPaint_time;
  111. sPaint_time.Hour = 12;
  112. sPaint_time.Min = 34;
  113. sPaint_time.Sec = 56;
  114. UBYTE num = 10;
  115. for (;;) {
  116. sPaint_time.Sec = sPaint_time.Sec + 1;
  117. if (sPaint_time.Sec == 60) {
  118. sPaint_time.Min = sPaint_time.Min + 1;
  119. sPaint_time.Sec = 0;
  120. if (sPaint_time.Min == 60) {
  121. sPaint_time.Hour = sPaint_time.Hour + 1;
  122. sPaint_time.Min = 0;
  123. if (sPaint_time.Hour == 24) {
  124. sPaint_time.Hour = 0;
  125. sPaint_time.Min = 0;
  126. sPaint_time.Sec = 0;
  127. }
  128. }
  129. }
  130. Paint_Clear(WHITE);
  131. Paint_DrawTime(20, 10, &sPaint_time, &Font20, WHITE, BLACK);
  132. EPD_4IN2_V2_PartialDisplay(BlackImage, 80, 200, 200, 50);
  133. DEV_Delay_ms(500);//Analog clock 1s
  134. num = num - 1;
  135. if(num == 0) {
  136. break;
  137. }
  138. }
  139. #endif
  140. #if 1
  141. // EPD_4IN2_V2_Init();
  142. // EPD_4IN2_V2_Clear();
  143. EPD_4IN2_V2_Init_4Gray();
  144. printf("show Gray------------------------\r\n");
  145. free(BlackImage);
  146. BlackImage = NULL;
  147. Imagesize = ((EPD_4IN2_V2_WIDTH % 8 == 0)? (EPD_4IN2_V2_WIDTH / 4 ): (EPD_4IN2_V2_WIDTH / 4 + 1)) * EPD_4IN2_V2_HEIGHT;
  148. if((BlackImage = (UBYTE *)malloc(Imagesize)) == NULL) {
  149. printf("Failed to apply for black memory...\r\n");
  150. return -1;
  151. }
  152. Paint_NewImage(BlackImage, EPD_4IN2_V2_WIDTH, EPD_4IN2_V2_HEIGHT, 0, WHITE);
  153. Paint_SetScale(4);
  154. Paint_Clear(WHITE);
  155. Paint_DrawPoint(10, 80, BLACK, DOT_PIXEL_1X1, DOT_STYLE_DFT);
  156. Paint_DrawPoint(10, 90, BLACK, DOT_PIXEL_2X2, DOT_STYLE_DFT);
  157. Paint_DrawPoint(10, 100, BLACK, DOT_PIXEL_3X3, DOT_STYLE_DFT);
  158. Paint_DrawLine(20, 70, 70, 120, BLACK, DOT_PIXEL_1X1, LINE_STYLE_SOLID);
  159. Paint_DrawLine(70, 70, 20, 120, BLACK, DOT_PIXEL_1X1, LINE_STYLE_SOLID);
  160. Paint_DrawRectangle(20, 70, 70, 120, BLACK, DOT_PIXEL_1X1, DRAW_FILL_EMPTY);
  161. Paint_DrawRectangle(80, 70, 130, 120, BLACK, DOT_PIXEL_1X1, DRAW_FILL_FULL);
  162. Paint_DrawCircle(45, 95, 20, BLACK, DOT_PIXEL_1X1, DRAW_FILL_EMPTY);
  163. Paint_DrawCircle(105, 95, 20, WHITE, DOT_PIXEL_1X1, DRAW_FILL_FULL);
  164. Paint_DrawLine(85, 95, 125, 95, BLACK, DOT_PIXEL_1X1, LINE_STYLE_DOTTED);
  165. Paint_DrawLine(105, 75, 105, 115, BLACK, DOT_PIXEL_1X1, LINE_STYLE_DOTTED);
  166. Paint_DrawString_EN(10, 0, "waveshare", &Font16, BLACK, WHITE);
  167. Paint_DrawString_EN(10, 20, "hello world", &Font12, WHITE, BLACK);
  168. Paint_DrawNum(10, 33, 123456789, &Font12, BLACK, WHITE);
  169. Paint_DrawNum(10, 50, 987654321, &Font16, WHITE, BLACK);
  170. Paint_DrawString_CN(140, 0, "ÄãºÃabc", &Font12CN, GRAY1, GRAY4);
  171. Paint_DrawString_CN(140, 40, "ÄãºÃabc", &Font12CN, GRAY2, GRAY3);
  172. Paint_DrawString_CN(140, 80, "ÄãºÃabc", &Font12CN, GRAY3, GRAY2);
  173. Paint_DrawString_CN(140, 120, "ÄãºÃabc", &Font12CN, GRAY4, GRAY1);
  174. Paint_DrawString_CN(220, 0, "΢ѩµç×Ó", &Font24CN, GRAY1, GRAY4);
  175. Paint_DrawString_CN(220, 40, "΢ѩµç×Ó", &Font24CN, GRAY2, GRAY3);
  176. Paint_DrawString_CN(220, 80, "΢ѩµç×Ó", &Font24CN, GRAY3, GRAY2);
  177. Paint_DrawString_CN(220, 120, "΢ѩµç×Ó", &Font24CN, GRAY4, GRAY1);
  178. EPD_4IN2_V2_Display_4Gray(BlackImage);
  179. DEV_Delay_ms(2000);
  180. Paint_Clear(WHITE);
  181. EPD_4IN2_V2_Display_4Gray(gImage_4in2_4Gray1);
  182. DEV_Delay_ms(2000);
  183. GUI_ReadBmp_4Gray("./pic/4in2_Scale.bmp",0 , 0);
  184. EPD_4IN2_V2_Display_4Gray(BlackImage);
  185. DEV_Delay_ms(2000);
  186. Paint_Clear(WHITE);
  187. GUI_ReadBmp("./pic/100x100.bmp", 20, 20);
  188. EPD_4IN2_V2_Display_4Gray(BlackImage);
  189. DEV_Delay_ms(2000);
  190. #endif
  191. EPD_4IN2_V2_Init();
  192. EPD_4IN2_V2_Clear();
  193. printf("Goto Sleep...\r\n");
  194. EPD_4IN2_V2_Sleep();
  195. free(BlackImage);
  196. BlackImage = NULL;
  197. DEV_Delay_ms(2000);//important, at least 2s
  198. // close 5V
  199. printf("close 5V, Module enters 0 power consumption ...\r\n");
  200. DEV_Module_Exit();
  201. return 0;
  202. }