EPD_2in9b_V3.c 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /*****************************************************************************
  2. * | File : EPD_2in9b_V3.c
  3. * | Author : Waveshare team
  4. * | Function : 2.9inch e-paper b V3
  5. * | Info :
  6. *----------------
  7. * | This version: V1.1
  8. * | Date : 2020-12-03
  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_2in9b_V3.h"
  32. #include "Debug.h"
  33. /******************************************************************************
  34. function : Software reset
  35. parameter:
  36. ******************************************************************************/
  37. static void EPD_2IN9B_V3_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_2IN9B_V3_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_2IN9B_V3_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. void EPD_2IN9B_V3_ReadBusy(void)
  75. {
  76. Debug("e-Paper busy\r\n");
  77. UBYTE busy;
  78. do
  79. {
  80. EPD_2IN9B_V3_SendCommand(0x71);
  81. busy = DEV_Digital_Read(EPD_BUSY_PIN);
  82. busy =!(busy & 0x01);
  83. }
  84. while(busy);
  85. Debug("e-Paper busy release\r\n");
  86. DEV_Delay_ms(200);
  87. }
  88. /******************************************************************************
  89. function : Initialize the e-Paper register
  90. parameter:
  91. ******************************************************************************/
  92. void EPD_2IN9B_V3_Init(void)
  93. {
  94. EPD_2IN9B_V3_Reset();
  95. EPD_2IN9B_V3_SendCommand(0x04);
  96. EPD_2IN9B_V3_ReadBusy();//waiting for the electronic paper IC to release the idle signal
  97. EPD_2IN9B_V3_SendCommand(0x00);//panel setting
  98. EPD_2IN9B_V3_SendData(0x0f);//LUT from OTP,128x296
  99. EPD_2IN9B_V3_SendData(0x89);//Temperature sensor, boost and other related timing settings
  100. EPD_2IN9B_V3_SendCommand(0x61);//resolution setting
  101. EPD_2IN9B_V3_SendData (0x80);
  102. EPD_2IN9B_V3_SendData (0x01);
  103. EPD_2IN9B_V3_SendData (0x28);
  104. EPD_2IN9B_V3_SendCommand(0X50);//VCOM AND DATA INTERVAL SETTING
  105. EPD_2IN9B_V3_SendData(0x77);//WBmode:VBDF 17|D7 VBDW 97 VBDB 57
  106. //WBRmode:VBDF F7 VBDW 77 VBDB 37 VBDR B7
  107. }
  108. /******************************************************************************
  109. function : Clear screen
  110. parameter:
  111. ******************************************************************************/
  112. void EPD_2IN9B_V3_Clear(void)
  113. {
  114. UWORD Width = (EPD_2IN9B_V3_WIDTH % 8 == 0)? (EPD_2IN9B_V3_WIDTH / 8 ): (EPD_2IN9B_V3_WIDTH / 8 + 1);
  115. UWORD Height = EPD_2IN9B_V3_HEIGHT;
  116. //send black data
  117. EPD_2IN9B_V3_SendCommand(0x10);
  118. for (UWORD j = 0; j < Height; j++) {
  119. for (UWORD i = 0; i < Width; i++) {
  120. EPD_2IN9B_V3_SendData(0xFF);
  121. }
  122. }
  123. //send red data
  124. EPD_2IN9B_V3_SendCommand(0x13);
  125. for (UWORD j = 0; j < Height; j++) {
  126. for (UWORD i = 0; i < Width; i++) {
  127. EPD_2IN9B_V3_SendData(0xFF);
  128. }
  129. }
  130. EPD_2IN9B_V3_SendCommand(0x12);
  131. EPD_2IN9B_V3_ReadBusy();
  132. }
  133. /******************************************************************************
  134. function : Sends the image buffer in RAM to e-Paper and displays
  135. parameter:
  136. ******************************************************************************/
  137. void EPD_2IN9B_V3_Display(const UBYTE *blackimage, const UBYTE *ryimage)
  138. {
  139. UWORD Width, Height;
  140. Width = (EPD_2IN9B_V3_WIDTH % 8 == 0)? (EPD_2IN9B_V3_WIDTH / 8 ): (EPD_2IN9B_V3_WIDTH / 8 + 1);
  141. Height = EPD_2IN9B_V3_HEIGHT;
  142. EPD_2IN9B_V3_SendCommand(0x10);
  143. for (UWORD j = 0; j < Height; j++) {
  144. for (UWORD i = 0; i < Width; i++) {
  145. EPD_2IN9B_V3_SendData(blackimage[i + j * Width]);
  146. }
  147. }
  148. EPD_2IN9B_V3_SendCommand(0x92);
  149. EPD_2IN9B_V3_SendCommand(0x13);
  150. for (UWORD j = 0; j < Height; j++) {
  151. for (UWORD i = 0; i < Width; i++) {
  152. EPD_2IN9B_V3_SendData(ryimage[i + j * Width]);
  153. }
  154. }
  155. EPD_2IN9B_V3_SendCommand(0x92);
  156. EPD_2IN9B_V3_SendCommand(0x12);
  157. EPD_2IN9B_V3_ReadBusy();
  158. }
  159. /******************************************************************************
  160. function : Enter sleep mode
  161. parameter:
  162. ******************************************************************************/
  163. void EPD_2IN9B_V3_Sleep(void)
  164. {
  165. EPD_2IN9B_V3_SendCommand(0x02); // POWER_OFF
  166. EPD_2IN9B_V3_ReadBusy();
  167. EPD_2IN9B_V3_SendCommand(0x07); // DEEP_SLEEP
  168. EPD_2IN9B_V3_SendData(0xA5); // check code
  169. }