EPD_7in5b_V2.c 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. /*****************************************************************************
  2. * | File : EPD_7IN5b_V2.c
  3. * | Author : Waveshare team
  4. * | Function : Electronic paper driver
  5. * | Info :
  6. *----------------
  7. * | This version: V2.1
  8. * | Date : 2020-11-30
  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_7in5b_V2.h"
  31. #include "Debug.h"
  32. /******************************************************************************
  33. function : Software reset
  34. parameter:
  35. ******************************************************************************/
  36. static void EPD_7IN5B_V2_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_7IN5B_V2_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_7IN5B_V2_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. void EPD_7IN5B_V2_WaitUntilIdle(void)
  74. {
  75. Debug("e-Paper busy\r\n");
  76. unsigned char busy;
  77. do {
  78. EPD_7IN5B_V2_SendCommand(0x71);
  79. busy = DEV_Digital_Read(EPD_BUSY_PIN);
  80. busy =!(busy & 0x01);
  81. }while(busy);
  82. DEV_Delay_ms(200);
  83. Debug("e-Paper busy release\r\n");
  84. }
  85. /******************************************************************************
  86. function : Turn On Display
  87. parameter:
  88. ******************************************************************************/
  89. static void EPD_7IN5B_V2_TurnOnDisplay(void)
  90. {
  91. EPD_7IN5B_V2_SendCommand(0x12); //DISPLAY REFRESH
  92. DEV_Delay_ms(100); //!!!The delay here is necessary, 200uS at least!!!
  93. EPD_7IN5B_V2_WaitUntilIdle();
  94. }
  95. /******************************************************************************
  96. function : Initialize the e-Paper register
  97. parameter:
  98. ******************************************************************************/
  99. UBYTE EPD_7IN5B_V2_Init(void)
  100. {
  101. EPD_7IN5B_V2_Reset();
  102. EPD_7IN5B_V2_SendCommand(0x01); //POWER SETTING
  103. EPD_7IN5B_V2_SendData(0x07);
  104. EPD_7IN5B_V2_SendData(0x07); //VGH=20V,VGL=-20V
  105. EPD_7IN5B_V2_SendData(0x3f); //VDH=15V
  106. EPD_7IN5B_V2_SendData(0x3f); //VDL=-15V
  107. EPD_7IN5B_V2_SendCommand(0x04); //POWER ON
  108. DEV_Delay_ms(100);
  109. EPD_7IN5B_V2_WaitUntilIdle();
  110. EPD_7IN5B_V2_SendCommand(0X00); //PANNEL SETTING
  111. EPD_7IN5B_V2_SendData(0x0F); //KW-3f KWR-2F BWROTP 0f BWOTP 1f
  112. EPD_7IN5B_V2_SendCommand(0x61); //tres
  113. EPD_7IN5B_V2_SendData(0x03); //source 800
  114. EPD_7IN5B_V2_SendData(0x20);
  115. EPD_7IN5B_V2_SendData(0x01); //gate 480
  116. EPD_7IN5B_V2_SendData(0xE0);
  117. EPD_7IN5B_V2_SendCommand(0X15);
  118. EPD_7IN5B_V2_SendData(0x00);
  119. EPD_7IN5B_V2_SendCommand(0X50); //VCOM AND DATA INTERVAL SETTING
  120. EPD_7IN5B_V2_SendData(0x11);
  121. EPD_7IN5B_V2_SendData(0x07);
  122. EPD_7IN5B_V2_SendCommand(0X60); //TCON SETTING
  123. EPD_7IN5B_V2_SendData(0x22);
  124. EPD_7IN5B_V2_SendCommand(0X82);
  125. EPD_7IN5B_V2_SendData(0x08);
  126. EPD_7IN5B_V2_SendCommand(0X30);
  127. EPD_7IN5B_V2_SendData(0x06);
  128. EPD_7IN5B_V2_SendCommand(0x65); // Resolution setting
  129. EPD_7IN5B_V2_SendData(0x00);
  130. EPD_7IN5B_V2_SendData(0x00);//800*480
  131. EPD_7IN5B_V2_SendData(0x00);
  132. EPD_7IN5B_V2_SendData(0x00);
  133. return 0;
  134. }
  135. /******************************************************************************
  136. function : Clear screen
  137. parameter:
  138. ******************************************************************************/
  139. void EPD_7IN5B_V2_Clear(void)
  140. {
  141. UWORD Width, Height;
  142. Width =(EPD_7IN5B_V2_WIDTH % 8 == 0)?(EPD_7IN5B_V2_WIDTH / 8 ):(EPD_7IN5B_V2_WIDTH / 8 + 1);
  143. Height = EPD_7IN5B_V2_HEIGHT;
  144. UWORD i;
  145. EPD_7IN5B_V2_SendCommand(0x10);
  146. for(i=0; i<Width*Height; i++) {
  147. EPD_7IN5B_V2_SendData(0xff);
  148. }
  149. EPD_7IN5B_V2_SendCommand(0x13);
  150. for(i=0; i<Width*Height; i++) {
  151. EPD_7IN5B_V2_SendData(0x00);
  152. }
  153. EPD_7IN5B_V2_TurnOnDisplay();
  154. }
  155. void EPD_7IN5B_V2_ClearRed(void)
  156. {
  157. UWORD Width, Height;
  158. Width =(EPD_7IN5B_V2_WIDTH % 8 == 0)?(EPD_7IN5B_V2_WIDTH / 8 ):(EPD_7IN5B_V2_WIDTH / 8 + 1);
  159. Height = EPD_7IN5B_V2_HEIGHT;
  160. UWORD i;
  161. EPD_7IN5B_V2_SendCommand(0x10);
  162. for(i=0; i<Width*Height; i++) {
  163. EPD_7IN5B_V2_SendData(0xff);
  164. }
  165. EPD_7IN5B_V2_SendCommand(0x13);
  166. for(i=0; i<Width*Height; i++) {
  167. EPD_7IN5B_V2_SendData(0xff);
  168. }
  169. EPD_7IN5B_V2_TurnOnDisplay();
  170. }
  171. void EPD_7IN5B_V2_ClearBlack(void)
  172. {
  173. UWORD Width, Height;
  174. Width =(EPD_7IN5B_V2_WIDTH % 8 == 0)?(EPD_7IN5B_V2_WIDTH / 8 ):(EPD_7IN5B_V2_WIDTH / 8 + 1);
  175. Height = EPD_7IN5B_V2_HEIGHT;
  176. UWORD i;
  177. EPD_7IN5B_V2_SendCommand(0x10);
  178. for(i=0; i<Width*Height; i++) {
  179. EPD_7IN5B_V2_SendData(0x00);
  180. }
  181. EPD_7IN5B_V2_SendCommand(0x13);
  182. for(i=0; i<Width*Height; i++) {
  183. EPD_7IN5B_V2_SendData(0x00);
  184. }
  185. EPD_7IN5B_V2_TurnOnDisplay();
  186. }
  187. /******************************************************************************
  188. function : Sends the image buffer in RAM to e-Paper and displays
  189. parameter:
  190. ******************************************************************************/
  191. void EPD_7IN5B_V2_Display(const UBYTE *blackimage, const UBYTE *ryimage)
  192. {
  193. UDOUBLE Width, Height;
  194. Width =(EPD_7IN5B_V2_WIDTH % 8 == 0)?(EPD_7IN5B_V2_WIDTH / 8 ):(EPD_7IN5B_V2_WIDTH / 8 + 1);
  195. Height = EPD_7IN5B_V2_HEIGHT;
  196. //send black data
  197. EPD_7IN5B_V2_SendCommand(0x10);
  198. for (UDOUBLE j = 0; j < Height; j++) {
  199. for (UDOUBLE i = 0; i < Width; i++) {
  200. EPD_7IN5B_V2_SendData(blackimage[i + j * Width]);
  201. }
  202. }
  203. EPD_7IN5B_V2_SendCommand(0x92);
  204. //send red data
  205. EPD_7IN5B_V2_SendCommand(0x13);
  206. for (UDOUBLE j = 0; j < Height; j++) {
  207. for (UDOUBLE i = 0; i < Width; i++) {
  208. EPD_7IN5B_V2_SendData(~ryimage[i + j * Width]);
  209. }
  210. }
  211. EPD_7IN5B_V2_TurnOnDisplay();
  212. }
  213. //0 1 is a black area and 2 3 is a red area
  214. void EPD_7IN5B_V2_WritePicture(const UBYTE *blackimage, UBYTE Block)
  215. {
  216. UDOUBLE Width, Height;
  217. Width =(EPD_7IN5B_V2_WIDTH % 8 == 0)?(EPD_7IN5B_V2_WIDTH / 8 ):(EPD_7IN5B_V2_WIDTH / 8 + 1);
  218. Height = EPD_7IN5B_V2_HEIGHT;
  219. if(Block == 0){
  220. EPD_7IN5B_V2_SendCommand(0x10);
  221. }else if(Block == 2){
  222. EPD_7IN5B_V2_SendCommand(0x92);
  223. EPD_7IN5B_V2_SendCommand(0x13);
  224. }
  225. for (UDOUBLE j = 0; j < Height/2; j++) {
  226. for (UDOUBLE i = 0; i < Width; i++) {
  227. if(Block>=2){
  228. EPD_7IN5B_V2_SendData(~blackimage[i + j * Width]);
  229. }else{
  230. EPD_7IN5B_V2_SendData(blackimage[i + j * Width]);
  231. }
  232. }
  233. }
  234. if(Block == 3){
  235. EPD_7IN5B_V2_TurnOnDisplay();
  236. }
  237. }
  238. /******************************************************************************
  239. function : Enter sleep mode
  240. parameter:
  241. ******************************************************************************/
  242. void EPD_7IN5B_V2_Sleep(void)
  243. {
  244. EPD_7IN5B_V2_SendCommand(0X02); //power off
  245. EPD_7IN5B_V2_WaitUntilIdle();
  246. EPD_7IN5B_V2_SendCommand(0X07); //deep sleep
  247. EPD_7IN5B_V2_SendData(0xA5);
  248. }