EPD_2in9_V2.c 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  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. Debug("e-Paper busy\r\n");
  99. while(1)
  100. { //=1 BUSY
  101. if(DEV_Digital_Read(EPD_BUSY_PIN)==0)
  102. break;
  103. DEV_Delay_ms(50);
  104. }
  105. DEV_Delay_ms(50);
  106. Debug("e-Paper busy release\r\n");
  107. }
  108. /******************************************************************************
  109. function : Turn On Display
  110. parameter:
  111. ******************************************************************************/
  112. static void EPD_2IN9_V2_TurnOnDisplay(void)
  113. {
  114. EPD_2IN9_V2_SendCommand(0x22); //Display Update Control
  115. EPD_2IN9_V2_SendData(0xF7);
  116. EPD_2IN9_V2_SendCommand(0x20); //Activate Display Update Sequence
  117. EPD_2IN9_V2_ReadBusy();
  118. }
  119. static void EPD_2IN9_V2_TurnOnDisplay_Partial(void)
  120. {
  121. EPD_2IN9_V2_SendCommand(0x22); //Display Update Control
  122. EPD_2IN9_V2_SendData(0xFF);
  123. EPD_2IN9_V2_SendCommand(0x20); //Activate Display Update Sequence
  124. EPD_2IN9_V2_ReadBusy();
  125. }
  126. /******************************************************************************
  127. function : Setting the display window
  128. parameter:
  129. ******************************************************************************/
  130. static void EPD_2IN9_V2_SetWindows(UWORD Xstart, UWORD Ystart, UWORD Xend, UWORD Yend)
  131. {
  132. EPD_2IN9_V2_SendCommand(0x44); // SET_RAM_X_ADDRESS_START_END_POSITION
  133. EPD_2IN9_V2_SendData((Xstart>>3) & 0xFF);
  134. EPD_2IN9_V2_SendData((Xend>>3) & 0xFF);
  135. EPD_2IN9_V2_SendCommand(0x45); // SET_RAM_Y_ADDRESS_START_END_POSITION
  136. EPD_2IN9_V2_SendData(Ystart & 0xFF);
  137. EPD_2IN9_V2_SendData((Ystart >> 8) & 0xFF);
  138. EPD_2IN9_V2_SendData(Yend & 0xFF);
  139. EPD_2IN9_V2_SendData((Yend >> 8) & 0xFF);
  140. }
  141. /******************************************************************************
  142. function : Set Cursor
  143. parameter:
  144. ******************************************************************************/
  145. static void EPD_2IN9_V2_SetCursor(UWORD Xstart, UWORD Ystart)
  146. {
  147. EPD_2IN9_V2_SendCommand(0x4E); // SET_RAM_X_ADDRESS_COUNTER
  148. EPD_2IN9_V2_SendData(Xstart & 0xFF);
  149. EPD_2IN9_V2_SendCommand(0x4F); // SET_RAM_Y_ADDRESS_COUNTER
  150. EPD_2IN9_V2_SendData(Ystart & 0xFF);
  151. EPD_2IN9_V2_SendData((Ystart >> 8) & 0xFF);
  152. }
  153. /******************************************************************************
  154. function : Initialize the e-Paper register
  155. parameter:
  156. ******************************************************************************/
  157. void EPD_2IN9_V2_Init(void)
  158. {
  159. EPD_2IN9_V2_Reset();
  160. DEV_Delay_ms(100);
  161. EPD_2IN9_V2_ReadBusy();
  162. EPD_2IN9_V2_SendCommand(0x12); //SWRESET
  163. EPD_2IN9_V2_ReadBusy();
  164. EPD_2IN9_V2_SendCommand(0x01); //Driver output control
  165. EPD_2IN9_V2_SendData(0x27);
  166. EPD_2IN9_V2_SendData(0x01);
  167. EPD_2IN9_V2_SendData(0x00);
  168. EPD_2IN9_V2_SendCommand(0x11); //data entry mode
  169. EPD_2IN9_V2_SendData(0x03);
  170. EPD_2IN9_V2_SetWindows(0, 0, EPD_2IN9_V2_WIDTH-1, EPD_2IN9_V2_HEIGHT-1);
  171. EPD_2IN9_V2_SendCommand(0x3C); //BorderWavefrom
  172. EPD_2IN9_V2_SendData(0x05);
  173. EPD_2IN9_V2_SendCommand(0x21); // Display update control
  174. EPD_2IN9_V2_SendData(0x00);
  175. EPD_2IN9_V2_SendData(0x80);
  176. EPD_2IN9_V2_SendCommand(0x18); //Read built-in temperature sensor
  177. EPD_2IN9_V2_SendData(0x80);
  178. EPD_2IN9_V2_SetCursor(0, 0);
  179. EPD_2IN9_V2_ReadBusy();
  180. }
  181. /******************************************************************************
  182. function : Clear screen
  183. parameter:
  184. ******************************************************************************/
  185. void EPD_2IN9_V2_Clear(void)
  186. {
  187. UWORD i;
  188. EPD_2IN9_V2_SendCommand(0x24); //write RAM for black(0)/white (1)
  189. for(i=0;i<4736;i++)
  190. {
  191. EPD_2IN9_V2_SendData(0xff);
  192. }
  193. EPD_2IN9_V2_TurnOnDisplay();
  194. }
  195. /******************************************************************************
  196. function : Sends the image buffer in RAM to e-Paper and displays
  197. parameter:
  198. ******************************************************************************/
  199. void EPD_2IN9_V2_Display(UBYTE *Image)
  200. {
  201. UWORD i;
  202. EPD_2IN9_V2_SendCommand(0x24); //write RAM for black(0)/white (1)
  203. for(i=0;i<4736;i++)
  204. {
  205. EPD_2IN9_V2_SendData(Image[i]);
  206. }
  207. EPD_2IN9_V2_TurnOnDisplay();
  208. }
  209. void EPD_2IN9_V2_Display_Base(UBYTE *Image)
  210. {
  211. UWORD i;
  212. EPD_2IN9_V2_SendCommand(0x24); //Write Black and White image to RAM
  213. for(i=0;i<4736;i++)
  214. {
  215. EPD_2IN9_V2_SendData(Image[i]);
  216. }
  217. EPD_2IN9_V2_SendCommand(0x26); //Write Black and White image to RAM
  218. for(i=0;i<4736;i++)
  219. {
  220. EPD_2IN9_V2_SendData(Image[i]);
  221. }
  222. EPD_2IN9_V2_TurnOnDisplay();
  223. }
  224. void EPD_2IN9_V2_Display_Partial(UBYTE *Image)
  225. {
  226. UWORD i;
  227. //Reset
  228. DEV_Digital_Write(EPD_RST_PIN, 0);
  229. DEV_Delay_ms(5);
  230. DEV_Digital_Write(EPD_RST_PIN, 1);
  231. DEV_Delay_ms(10);
  232. EPD_2IN9_V2_SendCommand(0x3C); //BorderWavefrom
  233. EPD_2IN9_V2_SendData(0x80);
  234. EPD_2IN9_V2_SetWindows(0, 0, EPD_2IN9_V2_WIDTH-1, EPD_2IN9_V2_HEIGHT-1);
  235. EPD_2IN9_V2_SetCursor(0, 0);
  236. EPD_2IN9_V2_SendCommand(0x24); //Write Black and White image to RAM
  237. for(i=0;i<4736;i++)
  238. {
  239. EPD_2IN9_V2_SendData(Image[i]);
  240. }
  241. EPD_2IN9_V2_TurnOnDisplay_Partial();
  242. }
  243. /******************************************************************************
  244. function : Enter sleep mode
  245. parameter:
  246. ******************************************************************************/
  247. void EPD_2IN9_V2_Sleep(void)
  248. {
  249. EPD_2IN9_V2_SendCommand(0x10); //enter deep sleep
  250. EPD_2IN9_V2_SendData(0x01);
  251. DEV_Delay_ms(100);
  252. }