EPD_2in13b_V3.c 7.2 KB

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