EPD_2in66b.c 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. /*****************************************************************************
  2. * | File : EPD_2in66b.c
  3. * | Author : Waveshare team
  4. * | Function : 2.66inch e-paper b
  5. * | Info :
  6. *----------------
  7. * | This version: V1.0
  8. * | Date : 2020-12-02
  9. * | Info :
  10. * -----------------------------------------------------------------------------
  11. # Permission is hereby granted, free of charge, to any person obtaining a copy
  12. # of this software and associated documnetation files (the "Software"), to deal
  13. # in the Software without restriction, including without limitation the rights
  14. # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  15. # copies of the Software, and to permit persons to whom the Software is
  16. # furished to do so, subject to the following conditions:
  17. #
  18. # The above copyright notice and this permission notice shall be included in
  19. # all copies or substantial portions of the Software.
  20. #
  21. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  22. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  23. # FITNESS OR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  24. # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  25. # LIABILITY WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  26. # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  27. # THE SOFTWARE.
  28. #
  29. ******************************************************************************/
  30. #include "EPD_2in66b.h"
  31. #include "Debug.h"
  32. /******************************************************************************
  33. function : Software reset
  34. parameter:
  35. ******************************************************************************/
  36. static void EPD_2IN66B_Reset(void)
  37. {
  38. DEV_Digital_Write(EPD_RST_PIN, 1);
  39. DEV_Delay_ms(200);
  40. DEV_Digital_Write(EPD_RST_PIN, 0);
  41. DEV_Delay_ms(2);
  42. DEV_Digital_Write(EPD_RST_PIN, 1);
  43. DEV_Delay_ms(200);
  44. }
  45. /******************************************************************************
  46. function : send command
  47. parameter:
  48. Reg : Command register
  49. ******************************************************************************/
  50. static void EPD_2IN66B_SendCommand(UBYTE Reg)
  51. {
  52. DEV_Digital_Write(EPD_DC_PIN, 0);
  53. DEV_Digital_Write(EPD_CS_PIN, 0);
  54. DEV_SPI_WriteByte(Reg);
  55. DEV_Digital_Write(EPD_CS_PIN, 1);
  56. }
  57. /******************************************************************************
  58. function : send data
  59. parameter:
  60. Data : Write data
  61. ******************************************************************************/
  62. static void EPD_2IN66B_SendData(UBYTE Data)
  63. {
  64. DEV_Digital_Write(EPD_DC_PIN, 1);
  65. DEV_Digital_Write(EPD_CS_PIN, 0);
  66. DEV_SPI_WriteByte(Data);
  67. DEV_Digital_Write(EPD_CS_PIN, 1);
  68. }
  69. /******************************************************************************
  70. function : Wait until the busy_pin goes LOW
  71. parameter:
  72. ******************************************************************************/
  73. static void EPD_2IN66B_ReadBusy(void)
  74. {
  75. EPD_Busy_WaitUntil(0,0);
  76. // unsigned char count = 100;
  77. // Debug("e-Paper busy\r\n");
  78. // DEV_Delay_ms(50);
  79. // while(DEV_Digital_Read(EPD_BUSY_PIN) == 1) { //LOW: idle, HIGH: busy
  80. // if(!(count--))
  81. // {
  82. // Debug("error: e-Paper busy timeout!!!\r\n");
  83. // break;
  84. // }
  85. // else
  86. // DEV_Delay_ms(100);
  87. // }
  88. // DEV_Delay_ms(50);
  89. // Debug("e-Paper busy release\r\n");
  90. }
  91. /******************************************************************************
  92. function : Turn On Display
  93. parameter:
  94. ******************************************************************************/
  95. static void EPD_2IN66B_TurnOnDisplay(void)
  96. {
  97. EPD_2IN66B_SendCommand(0x20);
  98. EPD_2IN66B_ReadBusy();
  99. }
  100. /******************************************************************************
  101. function : Setting the display window
  102. parameter:
  103. ******************************************************************************/
  104. static void EPD_2IN66B_SetWindows(UWORD Xstart, UWORD Ystart, UWORD Xend, UWORD Yend)
  105. {
  106. EPD_2IN66B_SendCommand(0x44); // SET_RAM_X_ADDRESS_START_END_POSITION
  107. EPD_2IN66B_SendData((Xstart>>3) & 0x1F);
  108. EPD_2IN66B_SendData((Xend>>3) & 0x1F);
  109. EPD_2IN66B_SendCommand(0x45); // SET_RAM_Y_ADDRESS_START_END_POSITION
  110. EPD_2IN66B_SendData(Ystart & 0xFF);
  111. EPD_2IN66B_SendData((Ystart >> 8) & 0x01);
  112. EPD_2IN66B_SendData(Yend & 0xFF);
  113. EPD_2IN66B_SendData((Yend >> 8) & 0x01);
  114. }
  115. /******************************************************************************
  116. function : Set Cursor
  117. parameter:
  118. ******************************************************************************/
  119. static void EPD_2IN66B_SetCursor(UWORD Xstart, UWORD Ystart)
  120. {
  121. EPD_2IN66B_SendCommand(0x4E); // SET_RAM_X_ADDRESS_COUNTER
  122. EPD_2IN66B_SendData(Xstart & 0x1F);
  123. EPD_2IN66B_SendCommand(0x4F); // SET_RAM_Y_ADDRESS_COUNTER
  124. EPD_2IN66B_SendData(Ystart & 0xFF);
  125. EPD_2IN66B_SendData((Ystart >> 8) & 0x01);
  126. }
  127. /******************************************************************************
  128. function : Initialize the e-Paper register
  129. parameter:
  130. ******************************************************************************/
  131. void EPD_2IN66B_Init(UBYTE mode)
  132. {
  133. EPD_2IN66B_Reset();
  134. EPD_2IN66B_ReadBusy();
  135. EPD_2IN66B_SendCommand(0x12);//soft reset
  136. EPD_2IN66B_ReadBusy();
  137. EPD_2IN66B_SendCommand(0x11); //data entry mode
  138. EPD_2IN66B_SendData(0x03);
  139. EPD_2IN66B_SetWindows(0, 0, EPD_2IN66B_WIDTH-1, EPD_2IN66B_HEIGHT-1);
  140. EPD_2IN66B_SendCommand(0x21); // Display update control
  141. EPD_2IN66B_SendData(0x00);
  142. EPD_2IN66B_SendData(0x80);
  143. EPD_2IN66B_SetCursor(0, 0);
  144. EPD_2IN66B_ReadBusy();
  145. }
  146. /******************************************************************************
  147. function : Sends the image buffer in RAM to e-Paper and displays
  148. parameter:
  149. ******************************************************************************/
  150. void EPD_2IN66B_Display(UBYTE *ImageBlack, UBYTE*ImageRed)
  151. {
  152. UWORD Width, Height;
  153. Width = (EPD_2IN66B_WIDTH % 8 == 0)? (EPD_2IN66B_WIDTH / 8 ): (EPD_2IN66B_WIDTH / 8 + 1);
  154. Height = EPD_2IN66B_HEIGHT;
  155. EPD_2IN66B_SendCommand(0x24);
  156. for (UWORD j = 0; j < Height; j++) {
  157. for (UWORD i = 0; i < Width; i++) {
  158. EPD_2IN66B_SendData(ImageBlack[i + j * Width]);
  159. }
  160. }
  161. EPD_2IN66B_SendCommand(0x26);
  162. for (UWORD j = 0; j < Height; j++) {
  163. for (UWORD i = 0; i < Width; i++) {
  164. EPD_2IN66B_SendData(~ImageRed[i + j * Width]);
  165. }
  166. }
  167. EPD_2IN66B_TurnOnDisplay();
  168. }
  169. /******************************************************************************
  170. function : Clear screen
  171. parameter:
  172. ******************************************************************************/
  173. void EPD_2IN66B_Clear(void)
  174. {
  175. UWORD Width, Height;
  176. Width = (EPD_2IN66B_WIDTH % 8 == 0)? (EPD_2IN66B_WIDTH / 8 ): (EPD_2IN66B_WIDTH / 8 + 1);
  177. Height = EPD_2IN66B_HEIGHT;
  178. EPD_2IN66B_SendCommand(0x24);
  179. for (UWORD j = 0; j < Height; j++) {
  180. for (UWORD i = 0; i < Width; i++) {
  181. EPD_2IN66B_SendData(0xff);
  182. }
  183. }
  184. EPD_2IN66B_SendCommand(0x26);
  185. for (UWORD j = 0; j < Height; j++) {
  186. for (UWORD i = 0; i < Width; i++) {
  187. EPD_2IN66B_SendData(0x00);
  188. }
  189. }
  190. EPD_2IN66B_TurnOnDisplay();
  191. }
  192. /******************************************************************************
  193. function : Enter sleep mode
  194. parameter:
  195. ******************************************************************************/
  196. void EPD_2IN66B_Sleep(void)
  197. {
  198. EPD_2IN66B_SendCommand(0x10);
  199. EPD_2IN66B_SendData(0x01);
  200. }