EPD_7in5h.cpp 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. /*****************************************************************************
  2. * | File : EPD_7in5h.c
  3. * | Author : Waveshare team
  4. * | Function : 7.5inch e-paper (G)
  5. * | Info :
  6. *----------------
  7. * | This version: V1.0
  8. * | Date : 2024-08-07
  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_7in5h.h"
  32. #include "Debug.h"
  33. #include "time.h"
  34. /******************************************************************************
  35. function : Software reset
  36. parameter:
  37. ******************************************************************************/
  38. static void EPD_7IN5H_Reset(void)
  39. {
  40. DEV_Digital_Write(EPD_RST_PIN, 1);
  41. DEV_Delay_ms(200);
  42. DEV_Digital_Write(EPD_RST_PIN, 0);
  43. DEV_Delay_ms(2);
  44. DEV_Digital_Write(EPD_RST_PIN, 1);
  45. DEV_Delay_ms(200);
  46. }
  47. /******************************************************************************
  48. function : send command
  49. parameter:
  50. Reg : Command register
  51. ******************************************************************************/
  52. static void EPD_7IN5H_SendCommand(UBYTE Reg)
  53. {
  54. DEV_Digital_Write(EPD_DC_PIN, 0);
  55. DEV_Digital_Write(EPD_CS_PIN, 0);
  56. DEV_SPI_WriteByte(Reg);
  57. DEV_Digital_Write(EPD_CS_PIN, 1);
  58. }
  59. /******************************************************************************
  60. function : send data
  61. parameter:
  62. Data : Write data
  63. ******************************************************************************/
  64. static void EPD_7IN5H_SendData(UBYTE Data)
  65. {
  66. DEV_Digital_Write(EPD_DC_PIN, 1);
  67. DEV_Digital_Write(EPD_CS_PIN, 0);
  68. DEV_SPI_WriteByte(Data);
  69. DEV_Digital_Write(EPD_CS_PIN, 1);
  70. }
  71. /******************************************************************************
  72. function : Wait until the busy_pin goes LOW
  73. parameter:
  74. ******************************************************************************/
  75. void EPD_7IN5H_ReadBusy(void)
  76. {
  77. Debug("e-Paper busy\r\n");
  78. DEV_Delay_ms(100);
  79. while(DEV_Digital_Read(EPD_BUSY_PIN) == 1) { //LOW: idle, HIGH: busy
  80. DEV_Delay_ms(100);
  81. }
  82. Debug("e-Paper busy release\r\n");
  83. }
  84. /******************************************************************************
  85. function : Wait until the busy_pin goes LOW
  86. parameter:
  87. ******************************************************************************/
  88. static void EPD_7IN5H_ReadBusyH(void)
  89. {
  90. Debug("e-Paper busy H\r\n");
  91. while(!DEV_Digital_Read(EPD_BUSY_PIN)) { //LOW: busy, HIGH: idle
  92. DEV_Delay_ms(5);
  93. }
  94. Debug("e-Paper busy H release\r\n");
  95. }
  96. /******************************************************************************
  97. function : Turn On Display
  98. parameter:
  99. ******************************************************************************/
  100. static void EPD_7IN5H_TurnOnDisplay(void)
  101. {
  102. // EPD_7IN5H_SendCommand(0x04);
  103. // EPD_7IN5H_ReadBusyH();
  104. EPD_7IN5H_SendCommand(0x12); // DISPLAY_REFRESH
  105. EPD_7IN5H_SendData(0x00);
  106. EPD_7IN5H_ReadBusyH();
  107. // EPD_7IN5H_SendCommand(0x20);
  108. // EPD_7IN5H_SendData(0x00);
  109. // EPD_7IN5H_ReadBusyH();
  110. }
  111. /******************************************************************************
  112. function : Initialize the e-Paper register
  113. parameter:
  114. ******************************************************************************/
  115. void EPD_7IN5H_Init(void)
  116. {
  117. EPD_7IN5H_Reset();
  118. EPD_7IN5H_SendCommand(0x00);
  119. EPD_7IN5H_SendData(0x0F);
  120. EPD_7IN5H_SendData(0x29);
  121. EPD_7IN5H_SendCommand(0x06);
  122. EPD_7IN5H_SendData(0x0F);
  123. EPD_7IN5H_SendData(0x8B);
  124. EPD_7IN5H_SendData(0x93);
  125. EPD_7IN5H_SendData(0xA1); // C1
  126. EPD_7IN5H_SendCommand(0x41);
  127. EPD_7IN5H_SendData(0x00);
  128. EPD_7IN5H_SendCommand(0x50);
  129. EPD_7IN5H_SendData(0x37);
  130. EPD_7IN5H_SendCommand(0x60);
  131. EPD_7IN5H_SendData(0x02);
  132. EPD_7IN5H_SendData(0x02);
  133. EPD_7IN5H_SendCommand(0x61);//0x61
  134. EPD_7IN5H_SendData(EPD_7IN5H_WIDTH/256);
  135. EPD_7IN5H_SendData(EPD_7IN5H_WIDTH%256);
  136. EPD_7IN5H_SendData(EPD_7IN5H_HEIGHT/256);
  137. EPD_7IN5H_SendData(EPD_7IN5H_HEIGHT%256);
  138. EPD_7IN5H_SendCommand(0x62);
  139. EPD_7IN5H_SendData(0x98);
  140. EPD_7IN5H_SendData(0x98);
  141. EPD_7IN5H_SendData(0x98);
  142. EPD_7IN5H_SendData(0x75);
  143. EPD_7IN5H_SendData(0xCA);
  144. EPD_7IN5H_SendData(0xB2);
  145. EPD_7IN5H_SendData(0x98);
  146. EPD_7IN5H_SendData(0x7E);
  147. EPD_7IN5H_SendCommand(0x65);
  148. EPD_7IN5H_SendData(0x00);
  149. EPD_7IN5H_SendData(0x00);
  150. EPD_7IN5H_SendData(0x00);
  151. EPD_7IN5H_SendData(0x00);
  152. EPD_7IN5H_SendCommand(0xE7);
  153. EPD_7IN5H_SendData(0x1C);
  154. EPD_7IN5H_SendCommand(0xE3);
  155. EPD_7IN5H_SendData(0x00);
  156. EPD_7IN5H_SendCommand(0xE9);
  157. EPD_7IN5H_SendData(0x01);
  158. EPD_7IN5H_SendCommand(0x30);
  159. EPD_7IN5H_SendData(0x08);
  160. EPD_7IN5H_SendCommand(0x04);
  161. EPD_7IN5H_ReadBusyH();
  162. }
  163. /******************************************************************************
  164. function : Clear screen
  165. parameter:
  166. ******************************************************************************/
  167. void EPD_7IN5H_Clear(UBYTE color)
  168. {
  169. UWORD Width, Height;
  170. Width = (EPD_7IN5H_WIDTH % 4 == 0)? (EPD_7IN5H_WIDTH / 4 ): (EPD_7IN5H_WIDTH / 4 + 1);
  171. Height = EPD_7IN5H_HEIGHT;
  172. EPD_7IN5H_SendCommand(0x10);
  173. for (UWORD j = 0; j < Height; j++) {
  174. for (UWORD i = 0; i < Width; i++) {
  175. EPD_7IN5H_SendData((color << 6) | (color << 4) | (color << 2) | color);
  176. }
  177. }
  178. EPD_7IN5H_TurnOnDisplay();
  179. }
  180. /******************************************************************************
  181. function : Sends the image buffer in RAM to e-Paper and displays
  182. parameter:
  183. ******************************************************************************/
  184. void EPD_7IN5H_Display(const UBYTE *Image)
  185. {
  186. UWORD Width, Height;
  187. Width = (EPD_7IN5H_WIDTH % 4 == 0)? (EPD_7IN5H_WIDTH / 4 ): (EPD_7IN5H_WIDTH / 4 + 1);
  188. Height = EPD_7IN5H_HEIGHT;
  189. EPD_7IN5H_SendCommand(0x10);
  190. for (UWORD j = 0; j < Height; j++) {
  191. for (UWORD i = 0; i < Width; i++) {
  192. EPD_7IN5H_SendData(Image[i + j * Width]);
  193. }
  194. }
  195. EPD_7IN5H_TurnOnDisplay();
  196. }
  197. void EPD_7IN5H_DisplayPart(const UBYTE *Image, UWORD xstart, UWORD ystart, UWORD image_width, UWORD image_heigh)
  198. {
  199. unsigned long i, j;
  200. UWORD Width, Height;
  201. Width = (EPD_7IN5H_WIDTH % 4 == 0)? (EPD_7IN5H_WIDTH / 4 ): (EPD_7IN5H_WIDTH / 4 + 1);
  202. Height = EPD_7IN5H_HEIGHT;
  203. EPD_7IN5H_SendCommand(0x10);
  204. for(i=0; i<Height; i++) {
  205. for(j=0; j<Width; j++) {
  206. if(i<image_heigh+ystart && i>=ystart && j<(image_width+xstart)/4 && j>=xstart/4) {
  207. EPD_7IN5H_SendData(Image[(j-xstart/4) + (image_width/4*(i-ystart))]);
  208. }
  209. else {
  210. EPD_7IN5H_SendData(0x55);
  211. }
  212. }
  213. }
  214. EPD_7IN5H_TurnOnDisplay();
  215. }
  216. /******************************************************************************
  217. function : Enter sleep mode
  218. parameter:
  219. ******************************************************************************/
  220. void EPD_7IN5H_Sleep(void)
  221. {
  222. EPD_7IN5H_SendCommand(0x02); // POWER_OFF
  223. EPD_7IN5H_SendData(0X00);
  224. EPD_7IN5H_ReadBusyH();
  225. EPD_7IN5H_SendCommand(0x07); // DEEP_SLEEP
  226. EPD_7IN5H_SendData(0XA5);
  227. }