EPD_2in9_V2.c 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. /*****************************************************************************
  2. * | File : EPD_2in9_V2.c
  3. * | Author : Waveshare team
  4. * | Function : 2.9inch e-paper V2
  5. * | Info :
  6. *----------------
  7. * | This version: V1.0
  8. * | Date : 2020-12-09
  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_2in9_V2.h"
  32. #include "Debug.h"
  33. UBYTE _WF_PARTIAL_2IN9[159] =
  34. {
  35. 0x0,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
  36. 0x80,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
  37. 0x40,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
  38. 0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
  39. 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
  40. 0x0A,0x0,0x0,0x0,0x0,0x0,0x2,
  41. 0x1,0x0,0x0,0x0,0x0,0x0,0x0,
  42. 0x1,0x0,0x0,0x0,0x0,0x0,0x0,
  43. 0x0,0x0,0x0,0x0,0x0,0x0,0x0,
  44. 0x0,0x0,0x0,0x0,0x0,0x0,0x0,
  45. 0x0,0x0,0x0,0x0,0x0,0x0,0x0,
  46. 0x0,0x0,0x0,0x0,0x0,0x0,0x0,
  47. 0x0,0x0,0x0,0x0,0x0,0x0,0x0,
  48. 0x0,0x0,0x0,0x0,0x0,0x0,0x0,
  49. 0x0,0x0,0x0,0x0,0x0,0x0,0x0,
  50. 0x0,0x0,0x0,0x0,0x0,0x0,0x0,
  51. 0x0,0x0,0x0,0x0,0x0,0x0,0x0,
  52. 0x22,0x22,0x22,0x22,0x22,0x22,0x0,0x0,0x0,
  53. 0x22,0x17,0x41,0xB0,0x32,0x36,
  54. };
  55. /******************************************************************************
  56. function : Software reset
  57. parameter:
  58. ******************************************************************************/
  59. static void EPD_2IN9_V2_Reset(void)
  60. {
  61. DEV_Digital_Write(EPD_RST_PIN, 1);
  62. DEV_Delay_ms(100);
  63. DEV_Digital_Write(EPD_RST_PIN, 0);
  64. DEV_Delay_ms(2);
  65. DEV_Digital_Write(EPD_RST_PIN, 1);
  66. DEV_Delay_ms(100);
  67. }
  68. /******************************************************************************
  69. function : send command
  70. parameter:
  71. Reg : Command register
  72. ******************************************************************************/
  73. static void EPD_2IN9_V2_SendCommand(UBYTE Reg)
  74. {
  75. DEV_Digital_Write(EPD_DC_PIN, 0);
  76. DEV_Digital_Write(EPD_CS_PIN, 0);
  77. DEV_SPI_WriteByte(Reg);
  78. DEV_Digital_Write(EPD_CS_PIN, 1);
  79. }
  80. /******************************************************************************
  81. function : send data
  82. parameter:
  83. Data : Write data
  84. ******************************************************************************/
  85. static void EPD_2IN9_V2_SendData(UBYTE Data)
  86. {
  87. DEV_Digital_Write(EPD_DC_PIN, 1);
  88. DEV_Digital_Write(EPD_CS_PIN, 0);
  89. DEV_SPI_WriteByte(Data);
  90. DEV_Digital_Write(EPD_CS_PIN, 1);
  91. }
  92. /******************************************************************************
  93. function : Wait until the busy_pin goes LOW
  94. parameter:
  95. ******************************************************************************/
  96. void EPD_2IN9_V2_ReadBusy(void)
  97. {
  98. unsigned char count = 100;
  99. Debug("e-Paper busy\r\n");
  100. while(1)
  101. { //=1 BUSY
  102. if(DEV_Digital_Read(EPD_BUSY_PIN)==0)
  103. break;
  104. if(!(count--))
  105. {
  106. Debug("error: e-Paper busy timeout!!!\r\n");
  107. break;
  108. }
  109. else
  110. DEV_Delay_ms(100);
  111. }
  112. DEV_Delay_ms(50);
  113. Debug("e-Paper busy release\r\n");
  114. }
  115. /******************************************************************************
  116. function : Turn On Display
  117. parameter:
  118. ******************************************************************************/
  119. static void EPD_2IN9_V2_TurnOnDisplay(void)
  120. {
  121. EPD_2IN9_V2_SendCommand(0x22); //Display Update Control
  122. EPD_2IN9_V2_SendData(0xF7);
  123. EPD_2IN9_V2_SendCommand(0x20); //Activate Display Update Sequence
  124. EPD_2IN9_V2_ReadBusy();
  125. }
  126. static void EPD_2IN9_V2_TurnOnDisplay_Partial(void)
  127. {
  128. EPD_2IN9_V2_SendCommand(0x22); //Display Update Control
  129. EPD_2IN9_V2_SendData(0xFF);
  130. EPD_2IN9_V2_SendCommand(0x20); //Activate Display Update Sequence
  131. EPD_2IN9_V2_ReadBusy();
  132. }
  133. /******************************************************************************
  134. function : Setting the display window
  135. parameter:
  136. ******************************************************************************/
  137. static void EPD_2IN9_V2_SetWindows(UWORD Xstart, UWORD Ystart, UWORD Xend, UWORD Yend)
  138. {
  139. EPD_2IN9_V2_SendCommand(0x44); // SET_RAM_X_ADDRESS_START_END_POSITION
  140. EPD_2IN9_V2_SendData((Xstart>>3) & 0xFF);
  141. EPD_2IN9_V2_SendData((Xend>>3) & 0xFF);
  142. EPD_2IN9_V2_SendCommand(0x45); // SET_RAM_Y_ADDRESS_START_END_POSITION
  143. EPD_2IN9_V2_SendData(Ystart & 0xFF);
  144. EPD_2IN9_V2_SendData((Ystart >> 8) & 0xFF);
  145. EPD_2IN9_V2_SendData(Yend & 0xFF);
  146. EPD_2IN9_V2_SendData((Yend >> 8) & 0xFF);
  147. }
  148. /******************************************************************************
  149. function : Set Cursor
  150. parameter:
  151. ******************************************************************************/
  152. static void EPD_2IN9_V2_SetCursor(UWORD Xstart, UWORD Ystart)
  153. {
  154. EPD_2IN9_V2_SendCommand(0x4E); // SET_RAM_X_ADDRESS_COUNTER
  155. EPD_2IN9_V2_SendData(Xstart & 0xFF);
  156. EPD_2IN9_V2_SendCommand(0x4F); // SET_RAM_Y_ADDRESS_COUNTER
  157. EPD_2IN9_V2_SendData(Ystart & 0xFF);
  158. EPD_2IN9_V2_SendData((Ystart >> 8) & 0xFF);
  159. }
  160. /******************************************************************************
  161. function : Initialize the e-Paper register
  162. parameter:
  163. ******************************************************************************/
  164. void EPD_2IN9_V2_Init(UBYTE mode)
  165. {
  166. EPD_2IN9_V2_Reset();
  167. DEV_Delay_ms(100);
  168. EPD_2IN9_V2_ReadBusy();
  169. EPD_2IN9_V2_SendCommand(0x12); //SWRESET
  170. EPD_2IN9_V2_ReadBusy();
  171. EPD_2IN9_V2_SendCommand(0x01); //Driver output control
  172. EPD_2IN9_V2_SendData(0x27);
  173. EPD_2IN9_V2_SendData(0x01);
  174. EPD_2IN9_V2_SendData(0x00);
  175. EPD_2IN9_V2_SendCommand(0x11); //data entry mode
  176. EPD_2IN9_V2_SendData(0x03);
  177. EPD_2IN9_V2_SetWindows(0, 0, EPD_2IN9_V2_WIDTH-1, EPD_2IN9_V2_HEIGHT-1);
  178. EPD_2IN9_V2_SendCommand(0x3C); //BorderWavefrom
  179. EPD_2IN9_V2_SendData(0x05);
  180. EPD_2IN9_V2_SendCommand(0x21); // Display update control
  181. EPD_2IN9_V2_SendData(0x00);
  182. EPD_2IN9_V2_SendData(0x80);
  183. EPD_2IN9_V2_SendCommand(0x18); //Read built-in temperature sensor
  184. EPD_2IN9_V2_SendData(0x80);
  185. EPD_2IN9_V2_SetCursor(0, 0);
  186. EPD_2IN9_V2_ReadBusy();
  187. }
  188. /******************************************************************************
  189. function : Clear screen
  190. parameter:
  191. ******************************************************************************/
  192. void EPD_2IN9_V2_Clear(void)
  193. {
  194. UWORD i;
  195. EPD_2IN9_V2_SendCommand(0x24); //write RAM for black(0)/white (1)
  196. for(i=0;i<4736;i++)
  197. {
  198. EPD_2IN9_V2_SendData(0xff);
  199. }
  200. EPD_2IN9_V2_TurnOnDisplay();
  201. }
  202. /******************************************************************************
  203. function : Sends the image buffer in RAM to e-Paper and displays
  204. parameter:
  205. ******************************************************************************/
  206. void EPD_2IN9_V2_Display(UBYTE *Image, UBYTE *Image2)
  207. {
  208. UWORD i;
  209. EPD_2IN9_V2_SendCommand(0x24); //write RAM for black(0)/white (1)
  210. for(i=0;i<4736;i++)
  211. {
  212. EPD_2IN9_V2_SendData(Image[i]);
  213. }
  214. EPD_2IN9_V2_TurnOnDisplay();
  215. }
  216. void EPD_2IN9_V2_Display_Base(UBYTE *Image)
  217. {
  218. UWORD i;
  219. EPD_2IN9_V2_SendCommand(0x24); //Write Black and White image to RAM
  220. for(i=0;i<4736;i++)
  221. {
  222. EPD_2IN9_V2_SendData(Image[i]);
  223. }
  224. EPD_2IN9_V2_SendCommand(0x26); //Write Black and White image to RAM
  225. for(i=0;i<4736;i++)
  226. {
  227. EPD_2IN9_V2_SendData(Image[i]);
  228. }
  229. EPD_2IN9_V2_TurnOnDisplay();
  230. }
  231. void EPD_2IN9_V2_Display_Partial(UBYTE *Image)
  232. {
  233. UWORD i;
  234. //Reset
  235. DEV_Digital_Write(EPD_RST_PIN, 0);
  236. DEV_Delay_ms(5);
  237. DEV_Digital_Write(EPD_RST_PIN, 1);
  238. DEV_Delay_ms(10);
  239. EPD_2IN9_V2_SendCommand(0x3C); //BorderWavefrom
  240. EPD_2IN9_V2_SendData(0x80);
  241. EPD_2IN9_V2_SetWindows(0, 0, EPD_2IN9_V2_WIDTH-1, EPD_2IN9_V2_HEIGHT-1);
  242. EPD_2IN9_V2_SetCursor(0, 0);
  243. EPD_2IN9_V2_SendCommand(0x24); //Write Black and White image to RAM
  244. for(i=0;i<4736;i++)
  245. {
  246. EPD_2IN9_V2_SendData(Image[i]);
  247. }
  248. EPD_2IN9_V2_TurnOnDisplay_Partial();
  249. }
  250. /******************************************************************************
  251. function : Enter sleep mode
  252. parameter:
  253. ******************************************************************************/
  254. void EPD_2IN9_V2_Sleep(void)
  255. {
  256. EPD_2IN9_V2_SendCommand(0x10); //enter deep sleep
  257. EPD_2IN9_V2_SendData(0x01);
  258. DEV_Delay_ms(100);
  259. }