EPD_2in13b_V2.c 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /*****************************************************************************
  2. * | File : EPD_2in13b_V2.c
  3. * | Author : Waveshare team
  4. * | Function : 2.13inch e-paper b V2
  5. * | Info :
  6. *----------------
  7. * | This version: V1.0
  8. * | Date : 2020-04-13
  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_2in13b_V2.h"
  32. #include "Debug.h"
  33. //元太屏
  34. /******************************************************************************
  35. function : Software reset
  36. parameter:
  37. ******************************************************************************/
  38. static void EPD_2IN13B_V2_Reset(void)
  39. {
  40. DEV_Digital_Write(EPD_CS_PIN, 1);
  41. DEV_Digital_Write(EPD_RST_PIN, 1);
  42. DEV_Delay_ms(1000);
  43. DEV_Digital_Write(EPD_RST_PIN, 0);
  44. DEV_Delay_ms(10);
  45. DEV_Digital_Write(EPD_RST_PIN, 1);
  46. DEV_Delay_ms(10);
  47. }
  48. /******************************************************************************
  49. function : send command
  50. parameter:
  51. Reg : Command register
  52. ******************************************************************************/
  53. static void EPD_2IN13B_V2_SendCommand(UBYTE Reg)
  54. {
  55. DEV_Digital_Write(EPD_DC_PIN, 0);
  56. DEV_Digital_Write(EPD_CS_PIN, 0);
  57. DEV_SPI_WriteByte(Reg);
  58. DEV_Digital_Write(EPD_CS_PIN, 1);
  59. }
  60. /******************************************************************************
  61. function : send data
  62. parameter:
  63. Data : Write data
  64. ******************************************************************************/
  65. static void EPD_2IN13B_V2_SendData(UBYTE Data)
  66. {
  67. DEV_Digital_Write(EPD_DC_PIN, 1);
  68. DEV_Digital_Write(EPD_CS_PIN, 0);
  69. DEV_SPI_WriteByte(Data);
  70. DEV_Digital_Write(EPD_CS_PIN, 1);
  71. }
  72. /******************************************************************************
  73. function : Wait until the busy_pin goes LOW
  74. parameter:
  75. ******************************************************************************/
  76. void EPD_2IN13B_V2_ReadBusy(void)
  77. {
  78. UBYTE busy;
  79. Debug("e-Paper busy\r\n");
  80. do{
  81. EPD_2IN13B_V2_SendCommand(0x71);
  82. busy = DEV_Digital_Read(EPD_BUSY_PIN);
  83. busy =!(busy & 0x01);
  84. }while(busy);
  85. Debug("e-Paper busy release\r\n");
  86. DEV_Delay_ms(200);
  87. }
  88. /******************************************************************************
  89. function : Turn On Display
  90. parameter:
  91. ******************************************************************************/
  92. static void EPD_2IN13B_V2_TurnOnDisplay(void)
  93. {
  94. EPD_2IN13B_V2_SendCommand(0x12); //DISPLAY REFRESH
  95. DEV_Delay_ms(100);
  96. EPD_2IN13B_V2_ReadBusy();
  97. }
  98. /******************************************************************************
  99. function : Initialize the e-Paper register
  100. parameter:
  101. ******************************************************************************/
  102. void EPD_2IN13B_V2_Init(void)
  103. {
  104. EPD_2IN13B_V2_Reset();
  105. DEV_Delay_ms(10);
  106. EPD_2IN13B_V2_SendCommand(0x04);
  107. EPD_2IN13B_V2_ReadBusy();//waiting for the electronic paper IC to release the idle signal
  108. EPD_2IN13B_V2_SendCommand(0x00);//panel setting
  109. EPD_2IN13B_V2_SendData(0x0f);//LUT from OTP,128x296
  110. EPD_2IN13B_V2_SendData(0x89);//Temperature sensor, boost and other related timing settings
  111. EPD_2IN13B_V2_SendCommand(0x61);//resolution setting
  112. EPD_2IN13B_V2_SendData (0x68);
  113. EPD_2IN13B_V2_SendData (0x00);
  114. EPD_2IN13B_V2_SendData (0xD4);
  115. EPD_2IN13B_V2_SendCommand(0X50);//VCOM AND DATA INTERVAL SETTING
  116. EPD_2IN13B_V2_SendData(0x77);//WBmode:VBDF 17|D7 VBDW 97 VBDB 57
  117. //WBRmode:VBDF F7 VBDW 77 VBDB 37 VBDR B7;
  118. }
  119. /******************************************************************************
  120. function : Clear screen
  121. parameter:
  122. ******************************************************************************/
  123. void EPD_2IN13B_V2_Clear(void)
  124. {
  125. UWORD Width = (EPD_2IN13B_V2_WIDTH % 8 == 0)? (EPD_2IN13B_V2_WIDTH / 8 ): (EPD_2IN13B_V2_WIDTH / 8 + 1);
  126. UWORD Height = EPD_2IN13B_V2_HEIGHT;
  127. //send black data
  128. EPD_2IN13B_V2_SendCommand(0x10);
  129. for (UWORD j = 0; j < Height; j++) {
  130. for (UWORD i = 0; i < Width; i++) {
  131. EPD_2IN13B_V2_SendData(0xFF);
  132. }
  133. }
  134. //send red data
  135. EPD_2IN13B_V2_SendCommand(0x13);
  136. for (UWORD j = 0; j < Height; j++) {
  137. for (UWORD i = 0; i < Width; i++) {
  138. EPD_2IN13B_V2_SendData(0xFF);
  139. }
  140. }
  141. EPD_2IN13B_V2_TurnOnDisplay();
  142. }
  143. /******************************************************************************
  144. function : Sends the image buffer in RAM to e-Paper and displays
  145. parameter:
  146. ******************************************************************************/
  147. void EPD_2IN13B_V2_Display(const UBYTE *blackimage, const UBYTE *ryimage)
  148. {
  149. UWORD Width, Height;
  150. Width = (EPD_2IN13B_V2_WIDTH % 8 == 0)? (EPD_2IN13B_V2_WIDTH / 8 ): (EPD_2IN13B_V2_WIDTH / 8 + 1);
  151. Height = EPD_2IN13B_V2_HEIGHT;
  152. EPD_2IN13B_V2_SendCommand(0x10);
  153. for (UWORD j = 0; j < Height; j++) {
  154. for (UWORD i = 0; i < Width; i++) {
  155. EPD_2IN13B_V2_SendData(blackimage[i + j * Width]);
  156. }
  157. }
  158. EPD_2IN13B_V2_SendCommand(0x13);
  159. for (UWORD j = 0; j < Height; j++) {
  160. for (UWORD i = 0; i < Width; i++) {
  161. EPD_2IN13B_V2_SendData(ryimage[i + j * Width]);
  162. }
  163. }
  164. EPD_2IN13B_V2_TurnOnDisplay();
  165. }
  166. /******************************************************************************
  167. function : Enter sleep mode
  168. parameter:
  169. ******************************************************************************/
  170. void EPD_2IN13B_V2_Sleep(void)
  171. {
  172. EPD_2IN13B_V2_SendCommand(0X50);
  173. EPD_2IN13B_V2_SendData(0xf7);
  174. EPD_2IN13B_V2_SendCommand(0X02); //power off
  175. EPD_2IN13B_V2_ReadBusy(); //waiting for the electronic paper IC to release the idle signal
  176. EPD_2IN13B_V2_SendCommand(0X07); //deep sleep
  177. EPD_2IN13B_V2_SendData(0xA5);
  178. }