EPD_2in7b_V2.c 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. /*****************************************************************************
  2. * | File : EPD_2in7b_V2.c
  3. * | Author : Waveshare team
  4. * | Function : 2.7inch e-paper b V2
  5. * | Info :
  6. *----------------
  7. * | This version: V1.0
  8. * | Date : 2020-10-20
  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_2in7b_V2.h"
  32. #include "Debug.h"
  33. /******************************************************************************
  34. function : Software reset
  35. parameter:
  36. ******************************************************************************/
  37. static void EPD_2IN7B_V2_Reset(void)
  38. {
  39. DEV_Digital_Write(EPD_RST_PIN, 1);
  40. DEV_Delay_ms(200);
  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(200);
  45. }
  46. /******************************************************************************
  47. function : send command
  48. parameter:
  49. Reg : Command register
  50. ******************************************************************************/
  51. static void EPD_2IN7B_V2_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_2IN7B_V2_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. /******************************************************************************
  71. function : Wait until the busy_pin goes LOW
  72. parameter:
  73. ******************************************************************************/
  74. static void EPD_2IN7B_V2_ReadBusy(void)
  75. {
  76. Debug("e-Paper busy\r\n");
  77. while(DEV_Digital_Read(EPD_BUSY_PIN) == 1) { //1: busy, 0: idle
  78. DEV_Delay_ms(10);
  79. }
  80. Debug("e-Paper busy release\r\n");
  81. }
  82. static void EPD_2IN7B_V2_TurnOnDisplay(void)
  83. {
  84. EPD_2IN7B_V2_SendCommand(0x20);
  85. EPD_2IN7B_V2_ReadBusy();
  86. }
  87. /******************************************************************************
  88. function : Setting the display window
  89. parameter:
  90. ******************************************************************************/
  91. static void EPD_2IN7B_V2_SetWindows(UWORD Xstart, UWORD Ystart, UWORD Xend, UWORD Yend)
  92. {
  93. EPD_2IN7B_V2_SendCommand(0x44); // SET_RAM_X_ADDRESS_START_END_POSITION
  94. EPD_2IN7B_V2_SendData((Xstart>>3) & 0xFF);
  95. EPD_2IN7B_V2_SendData((Xend>>3) & 0xFF);
  96. EPD_2IN7B_V2_SendCommand(0x45); // SET_RAM_Y_ADDRESS_START_END_POSITION
  97. EPD_2IN7B_V2_SendData(Ystart & 0xFF);
  98. EPD_2IN7B_V2_SendData((Ystart >> 8) & 0xFF);
  99. EPD_2IN7B_V2_SendData(Yend & 0xFF);
  100. EPD_2IN7B_V2_SendData((Yend >> 8) & 0xFF);
  101. }
  102. /******************************************************************************
  103. function : Set Cursor
  104. parameter:
  105. ******************************************************************************/
  106. static void EPD_2IN7B_V2_SetCursor(UWORD Xstart, UWORD Ystart)
  107. {
  108. EPD_2IN7B_V2_SendCommand(0x4E); // SET_RAM_X_ADDRESS_COUNTER
  109. EPD_2IN7B_V2_SendData(Xstart & 0xFF);
  110. EPD_2IN7B_V2_SendCommand(0x4F); // SET_RAM_Y_ADDRESS_COUNTER
  111. EPD_2IN7B_V2_SendData(Ystart & 0xFF);
  112. EPD_2IN7B_V2_SendData((Ystart >> 8) & 0xFF);
  113. }
  114. /******************************************************************************
  115. function : Initialize the e-Paper register
  116. parameter:
  117. ******************************************************************************/
  118. void EPD_2IN7B_V2_Init(void)
  119. {
  120. EPD_2IN7B_V2_Reset();
  121. EPD_2IN7B_V2_ReadBusy();
  122. EPD_2IN7B_V2_SendCommand(0x12);
  123. EPD_2IN7B_V2_ReadBusy();
  124. EPD_2IN7B_V2_SendCommand(0x00);
  125. EPD_2IN7B_V2_SendData(0x27);
  126. EPD_2IN7B_V2_SendData(0x01);
  127. EPD_2IN7B_V2_SendData(0x00);
  128. EPD_2IN7B_V2_SendCommand(0x11);
  129. EPD_2IN7B_V2_SendData(0x03);
  130. EPD_2IN7B_V2_SetWindows(0, 0, EPD_2IN7B_V2_WIDTH-1, EPD_2IN7B_V2_HEIGHT-1);
  131. EPD_2IN7B_V2_SetCursor(0, 0);
  132. }
  133. /******************************************************************************
  134. function : Clear screen
  135. parameter:
  136. ******************************************************************************/
  137. void EPD_2IN7B_V2_Clear(void)
  138. {
  139. UWORD Width, Height;
  140. Width = (EPD_2IN7B_V2_WIDTH % 8 == 0)? (EPD_2IN7B_V2_WIDTH / 8 ): (EPD_2IN7B_V2_WIDTH / 8 + 1);
  141. Height = EPD_2IN7B_V2_HEIGHT;
  142. EPD_2IN7B_V2_SendCommand(0x24);
  143. for (UWORD j = 0; j < Height; j++) {
  144. for (UWORD i = 0; i < Width; i++) {
  145. EPD_2IN7B_V2_SendData(0Xff);
  146. }
  147. }
  148. EPD_2IN7B_V2_SendCommand(0x26);
  149. for (UWORD j = 0; j < Height; j++) {
  150. for (UWORD i = 0; i < Width; i++) {
  151. EPD_2IN7B_V2_SendData(0X00);
  152. }
  153. }
  154. EPD_2IN7B_V2_TurnOnDisplay();
  155. }
  156. /******************************************************************************
  157. function : Sends the image buffer in RAM to e-Paper and displays
  158. parameter:
  159. ******************************************************************************/
  160. void EPD_2IN7B_V2_Display(UBYTE *Imageblack, UBYTE *Imagered)
  161. {
  162. UWORD Width, Height;
  163. Width = (EPD_2IN7B_V2_WIDTH % 8 == 0)? (EPD_2IN7B_V2_WIDTH / 8 ): (EPD_2IN7B_V2_WIDTH / 8 + 1);
  164. Height = EPD_2IN7B_V2_HEIGHT;
  165. EPD_2IN7B_V2_SendCommand(0x24);
  166. for (UWORD j = 0; j < Height; j++) {
  167. for (UWORD i = 0; i < Width; i++) {
  168. EPD_2IN7B_V2_SendData(Imageblack[i + j * Width]);
  169. }
  170. }
  171. EPD_2IN7B_V2_SendCommand(0x26);
  172. for (UWORD j = 0; j < Height; j++) {
  173. for (UWORD i = 0; i < Width; i++) {
  174. EPD_2IN7B_V2_SendData(~Imagered[i + j * Width]);
  175. }
  176. }
  177. EPD_2IN7B_V2_TurnOnDisplay();
  178. }
  179. /******************************************************************************
  180. function : Enter sleep mode
  181. parameter:
  182. ******************************************************************************/
  183. void EPD_2IN7B_V2_Sleep(void)
  184. {
  185. EPD_2IN7B_V2_SendCommand(0x10); // Deep sleep
  186. EPD_2IN7B_V2_SendData(0x01);
  187. }