EPD_7in5_V2.c 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. /*****************************************************************************
  2. * | File : EPD_7in5.c
  3. * | Author : Waveshare team
  4. * | Function : Electronic paper driver
  5. * | Info :
  6. *----------------
  7. * | This version: V3.0
  8. * | Date : 2023-12-18
  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_7in5_V2.h"
  32. #include "Debug.h"
  33. /******************************************************************************
  34. function : Software reset
  35. parameter:
  36. ******************************************************************************/
  37. static void EPD_Reset(void)
  38. {
  39. DEV_Digital_Write(EPD_RST_PIN, 1);
  40. DEV_Delay_ms(20);
  41. DEV_Digital_Write(EPD_RST_PIN, 0);
  42. DEV_Delay_ms(2);
  43. DEV_Digital_Write(EPD_RST_PIN, 1);
  44. DEV_Delay_ms(20);
  45. }
  46. /******************************************************************************
  47. function : send command
  48. parameter:
  49. Reg : Command register
  50. ******************************************************************************/
  51. static void EPD_SendCommand(UBYTE Reg)
  52. {
  53. DEV_Digital_Write(EPD_DC_PIN, 0);
  54. DEV_Digital_Write(EPD_CS_PIN, 0);
  55. DEV_SPI_WriteByte(Reg);
  56. DEV_Digital_Write(EPD_CS_PIN, 1);
  57. }
  58. /******************************************************************************
  59. function : send data
  60. parameter:
  61. Data : Write data
  62. ******************************************************************************/
  63. static void EPD_SendData(UBYTE Data)
  64. {
  65. DEV_Digital_Write(EPD_DC_PIN, 1);
  66. DEV_Digital_Write(EPD_CS_PIN, 0);
  67. DEV_SPI_WriteByte(Data);
  68. DEV_Digital_Write(EPD_CS_PIN, 1);
  69. }
  70. static void EPD_SendData2(UBYTE *pData, UDOUBLE len)
  71. {
  72. DEV_Digital_Write(EPD_DC_PIN, 1);
  73. DEV_Digital_Write(EPD_CS_PIN, 0);
  74. DEV_SPI_Write_nByte(pData, len);
  75. DEV_Digital_Write(EPD_CS_PIN, 1);
  76. }
  77. /******************************************************************************
  78. function : Wait until the busy_pin goes LOW
  79. parameter:
  80. ******************************************************************************/
  81. static void EPD_WaitUntilIdle(void)
  82. {
  83. Debug("e-Paper busy\r\n");
  84. do{
  85. DEV_Delay_ms(5);
  86. }while(!(DEV_Digital_Read(EPD_BUSY_PIN)));
  87. DEV_Delay_ms(5);
  88. Debug("e-Paper busy release\r\n");
  89. }
  90. /******************************************************************************
  91. function : Turn On Display
  92. parameter:
  93. ******************************************************************************/
  94. static void EPD_7IN5_V2_TurnOnDisplay(void)
  95. {
  96. EPD_SendCommand(0x12); //DISPLAY REFRESH
  97. DEV_Delay_ms(100); //!!!The delay here is necessary, 200uS at least!!!
  98. EPD_WaitUntilIdle();
  99. }
  100. /******************************************************************************
  101. function : Initialize the e-Paper register
  102. parameter:
  103. ******************************************************************************/
  104. UBYTE EPD_7IN5_V2_Init(void)
  105. {
  106. EPD_Reset();
  107. EPD_SendCommand(0x01); //POWER SETTING
  108. EPD_SendData(0x07);
  109. EPD_SendData(0x07); //VGH=20V,VGL=-20V
  110. EPD_SendData(0x3f); //VDH=15V
  111. EPD_SendData(0x3f); //VDL=-15V
  112. //Enhanced display drive(Add 0x06 command)
  113. EPD_SendCommand(0x06); //Booster Soft Start
  114. EPD_SendData(0x17);
  115. EPD_SendData(0x17);
  116. EPD_SendData(0x28);
  117. EPD_SendData(0x17);
  118. EPD_SendCommand(0x04); //POWER ON
  119. DEV_Delay_ms(100);
  120. EPD_WaitUntilIdle(); //waiting for the electronic paper IC to release the idle signal
  121. EPD_SendCommand(0X00); //PANNEL SETTING
  122. EPD_SendData(0x1F); //KW-3f KWR-2F BWROTP 0f BWOTP 1f
  123. EPD_SendCommand(0x61); //tres
  124. EPD_SendData(0x03); //source 800
  125. EPD_SendData(0x20);
  126. EPD_SendData(0x01); //gate 480
  127. EPD_SendData(0xE0);
  128. EPD_SendCommand(0X15);
  129. EPD_SendData(0x00);
  130. EPD_SendCommand(0X50); //VCOM AND DATA INTERVAL SETTING
  131. EPD_SendData(0x10);
  132. EPD_SendData(0x07);
  133. EPD_SendCommand(0X60); //TCON SETTING
  134. EPD_SendData(0x22);
  135. return 0;
  136. }
  137. UBYTE EPD_7IN5_V2_Init_Fast(void)
  138. {
  139. EPD_Reset();
  140. EPD_SendCommand(0X00); //PANNEL SETTING
  141. EPD_SendData(0x1F); //KW-3f KWR-2F BWROTP 0f BWOTP 1f
  142. EPD_SendCommand(0X50); //VCOM AND DATA INTERVAL SETTING
  143. EPD_SendData(0x10);
  144. EPD_SendData(0x07);
  145. EPD_SendCommand(0x04); //POWER ON
  146. DEV_Delay_ms(100);
  147. EPD_WaitUntilIdle(); //waiting for the electronic paper IC to release the idle signal
  148. //Enhanced display drive(Add 0x06 command)
  149. EPD_SendCommand(0x06); //Booster Soft Start
  150. EPD_SendData (0x27);
  151. EPD_SendData (0x27);
  152. EPD_SendData (0x18);
  153. EPD_SendData (0x17);
  154. EPD_SendCommand(0xE0);
  155. EPD_SendData(0x02);
  156. EPD_SendCommand(0xE5);
  157. EPD_SendData(0x5A);
  158. return 0;
  159. }
  160. UBYTE EPD_7IN5_V2_Init_Part(void)
  161. {
  162. EPD_Reset();
  163. EPD_SendCommand(0X00); //PANNEL SETTING
  164. EPD_SendData(0x1F); //KW-3f KWR-2F BWROTP 0f BWOTP 1f
  165. EPD_SendCommand(0x04); //POWER ON
  166. DEV_Delay_ms(100);
  167. EPD_WaitUntilIdle(); //waiting for the electronic paper IC to release the idle signal
  168. EPD_SendCommand(0xE0);
  169. EPD_SendData(0x02);
  170. EPD_SendCommand(0xE5);
  171. EPD_SendData(0x6E);
  172. return 0;
  173. }
  174. /******************************************************************************
  175. function : Clear screen
  176. parameter:
  177. ******************************************************************************/
  178. void EPD_7IN5_V2_Clear(void)
  179. {
  180. UWORD Width, Height;
  181. Width =(EPD_7IN5_V2_WIDTH % 8 == 0)?(EPD_7IN5_V2_WIDTH / 8 ):(EPD_7IN5_V2_WIDTH / 8 + 1);
  182. Height = EPD_7IN5_V2_HEIGHT;
  183. UBYTE image[EPD_7IN5_V2_WIDTH / 8] = {0x00};
  184. UWORD i;
  185. EPD_SendCommand(0x10);
  186. for(i=0; i<Width; i++) {
  187. image[i] = 0xFF;
  188. }
  189. for(i=0; i<Height; i++)
  190. {
  191. EPD_SendData2(image, Width);
  192. }
  193. EPD_SendCommand(0x13);
  194. for(i=0; i<Width; i++) {
  195. image[i] = 0x00;
  196. }
  197. for(i=0; i<Height; i++)
  198. {
  199. EPD_SendData2(image, Width);
  200. }
  201. EPD_7IN5_V2_TurnOnDisplay();
  202. }
  203. void EPD_7IN5_V2_ClearBlack(void)
  204. {
  205. UWORD Width, Height;
  206. Width =(EPD_7IN5_V2_WIDTH % 8 == 0)?(EPD_7IN5_V2_WIDTH / 8 ):(EPD_7IN5_V2_WIDTH / 8 + 1);
  207. Height = EPD_7IN5_V2_HEIGHT;
  208. UBYTE image[EPD_7IN5_V2_WIDTH / 8] = {0x00};
  209. UWORD i;
  210. EPD_SendCommand(0x10);
  211. for(i=0; i<Width; i++) {
  212. image[i] = 0x00;
  213. }
  214. for(i=0; i<Height; i++)
  215. {
  216. EPD_SendData2(image, Width);
  217. }
  218. EPD_SendCommand(0x13);
  219. for(i=0; i<Width; i++) {
  220. image[i] = 0xFF;
  221. }
  222. for(i=0; i<Height; i++)
  223. {
  224. EPD_SendData2(image, Width);
  225. }
  226. EPD_7IN5_V2_TurnOnDisplay();
  227. }
  228. /******************************************************************************
  229. function : Sends the image buffer in RAM to e-Paper and displays
  230. parameter:
  231. ******************************************************************************/
  232. void EPD_7IN5_V2_Display(UBYTE *blackimage)
  233. {
  234. UDOUBLE Width, Height;
  235. Width =(EPD_7IN5_V2_WIDTH % 8 == 0)?(EPD_7IN5_V2_WIDTH / 8 ):(EPD_7IN5_V2_WIDTH / 8 + 1);
  236. Height = EPD_7IN5_V2_HEIGHT;
  237. EPD_SendCommand(0x10);
  238. for (UDOUBLE j = 0; j < Height; j++) {
  239. EPD_SendData2((UBYTE *)(blackimage+j*Width), Width);
  240. }
  241. EPD_SendCommand(0x13);
  242. for (UDOUBLE j = 0; j < Height; j++) {
  243. for (UDOUBLE i = 0; i < Width; i++) {
  244. blackimage[i + j * Width] = ~blackimage[i + j * Width];
  245. }
  246. }
  247. for (UDOUBLE j = 0; j < Height; j++) {
  248. EPD_SendData2((UBYTE *)(blackimage+j*Width), Width);
  249. }
  250. EPD_7IN5_V2_TurnOnDisplay();
  251. }
  252. void EPD_7IN5_V2_Display_Part(UBYTE *blackimage,UDOUBLE x_start, UDOUBLE y_start, UDOUBLE x_end, UDOUBLE y_end)
  253. {
  254. UDOUBLE Width, Height;
  255. Width =((x_end - x_start) % 8 == 0)?((x_end - x_start) / 8 ):((x_end - x_start) / 8 + 1);
  256. Height = y_end - y_start;
  257. EPD_SendCommand(0x50);
  258. EPD_SendData(0xA9);
  259. EPD_SendData(0x07);
  260. EPD_SendCommand(0x91); //This command makes the display enter partial mode
  261. EPD_SendCommand(0x90); //resolution setting
  262. EPD_SendData (x_start/256);
  263. EPD_SendData (x_start%256); //x-start
  264. EPD_SendData (x_end/256);
  265. EPD_SendData (x_end%256-1); //x-end
  266. EPD_SendData (y_start/256); //
  267. EPD_SendData (y_start%256); //y-start
  268. EPD_SendData (y_end/256);
  269. EPD_SendData (y_end%256-1); //y-end
  270. EPD_SendData (0x01);
  271. EPD_SendCommand(0x13);
  272. for (UDOUBLE j = 0; j < Height; j++) {
  273. EPD_SendData2((UBYTE *)(blackimage+j*Width), Width);
  274. }
  275. EPD_7IN5_V2_TurnOnDisplay();
  276. }
  277. /******************************************************************************
  278. function : Enter sleep mode
  279. parameter:
  280. ******************************************************************************/
  281. void EPD_7IN5_V2_Sleep(void)
  282. {
  283. EPD_SendCommand(0X02); //power off
  284. EPD_WaitUntilIdle();
  285. EPD_SendCommand(0X07); //deep sleep
  286. EPD_SendData(0xA5);
  287. }