EPD_7in5_V2.c 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. /*****************************************************************************
  2. * | File : EPD_7in5.c
  3. * | Author : Waveshare team
  4. * | Function : Electronic paper driver
  5. * | Info :
  6. *----------------
  7. * | This version: V2.0
  8. * | Date : 2018-11-09
  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_7in5_V2.h"
  32. #include "Debug.h"
  33. /******************************************************************************
  34. function : Software reset
  35. parameter:
  36. ******************************************************************************/
  37. static void EPD_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_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_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_WaitUntilIdle(void)
  75. {
  76. EPD_Busy_WaitUntil(1,1);
  77. // unsigned char count = 200;
  78. // Debug("e-Paper busy\r\n");
  79. // unsigned char busy;
  80. // do{
  81. // EPD_SendCommand(0x71);
  82. // busy = DEV_Digital_Read(EPD_BUSY_PIN);
  83. // busy =!(busy & 0x01);
  84. // if(!(count--))
  85. // {
  86. // Debug("error: e-Paper busy timeout!!!\r\n");
  87. // break;
  88. // }
  89. // else
  90. // DEV_Delay_ms(100);
  91. // }while(busy);
  92. // DEV_Delay_ms(200);
  93. // Debug("e-Paper busy release\r\n");
  94. }
  95. /******************************************************************************
  96. function : Turn On Display
  97. parameter:
  98. ******************************************************************************/
  99. static void EPD_7IN5_V2_TurnOnDisplay(void)
  100. {
  101. EPD_SendCommand(0x12); //DISPLAY REFRESH
  102. DEV_Delay_ms(100); //!!!The delay here is necessary, 200uS at least!!!
  103. EPD_WaitUntilIdle();
  104. }
  105. /******************************************************************************
  106. function : Initialize the e-Paper register
  107. parameter:
  108. ******************************************************************************/
  109. UBYTE EPD_7IN5_V2_Init(UBYTE mode)
  110. {
  111. EPD_Reset();
  112. EPD_SendCommand(0x01); //POWER SETTING
  113. EPD_SendData(0x07);
  114. EPD_SendData(0x07); //VGH=20V,VGL=-20V
  115. EPD_SendData(0x3f); //VDH=15V
  116. EPD_SendData(0x3f); //VDL=-15V
  117. EPD_SendCommand(0x04); //POWER ON
  118. DEV_Delay_ms(100);
  119. EPD_WaitUntilIdle();
  120. EPD_SendCommand(0X00); //PANNEL SETTING
  121. EPD_SendData(0x1F); //KW-3f KWR-2F BWROTP 0f BWOTP 1f
  122. EPD_SendCommand(0x61); //tres
  123. EPD_SendData(0x03); //source 800
  124. EPD_SendData(0x20);
  125. EPD_SendData(0x01); //gate 480
  126. EPD_SendData(0xE0);
  127. EPD_SendCommand(0X15);
  128. EPD_SendData(0x00);
  129. EPD_SendCommand(0X50); //VCOM AND DATA INTERVAL SETTING
  130. EPD_SendData(0x10);
  131. EPD_SendData(0x07);
  132. EPD_SendCommand(0X60); //TCON SETTING
  133. EPD_SendData(0x22);
  134. return 0;
  135. }
  136. /******************************************************************************
  137. function : Clear screen
  138. parameter:
  139. ******************************************************************************/
  140. void EPD_7IN5_V2_Clear(void)
  141. {
  142. UWORD Width, Height;
  143. Width =(EPD_7IN5_V2_WIDTH % 8 == 0)?(EPD_7IN5_V2_WIDTH / 8 ):(EPD_7IN5_V2_WIDTH / 8 + 1);
  144. Height = EPD_7IN5_V2_HEIGHT;
  145. UWORD i;
  146. EPD_SendCommand(0x10);
  147. for(i=0; i<Height*Width; i++) {
  148. EPD_SendData(0x00);
  149. }
  150. EPD_SendCommand(0x13);
  151. for(i=0; i<Height*Width; i++) {
  152. EPD_SendData(0x00);
  153. }
  154. EPD_7IN5_V2_TurnOnDisplay();
  155. }
  156. void EPD_7IN5_V2_ClearBlack(void)
  157. {
  158. UWORD Width, Height;
  159. Width =(EPD_7IN5_V2_WIDTH % 8 == 0)?(EPD_7IN5_V2_WIDTH / 8 ):(EPD_7IN5_V2_WIDTH / 8 + 1);
  160. Height = EPD_7IN5_V2_HEIGHT;
  161. UWORD i;
  162. EPD_SendCommand(0x13);
  163. for(i=0; i<Height*Width; i++) {
  164. EPD_SendData(0xFF);
  165. }
  166. EPD_7IN5_V2_TurnOnDisplay();
  167. }
  168. /******************************************************************************
  169. function : Sends the image buffer in RAM to e-Paper and displays
  170. parameter:
  171. ******************************************************************************/
  172. void EPD_7IN5_V2_Display(const UBYTE *blackimage, UBYTE *Image2)
  173. {
  174. UDOUBLE Width, Height;
  175. Width =(EPD_7IN5_V2_WIDTH % 8 == 0)?(EPD_7IN5_V2_WIDTH / 8 ):(EPD_7IN5_V2_WIDTH / 8 + 1);
  176. Height = EPD_7IN5_V2_HEIGHT;
  177. //send black data
  178. EPD_SendCommand(0x13);
  179. for (UDOUBLE j = 0; j < Height; j++) {
  180. for (UDOUBLE i = 0; i < Width; i++) {
  181. EPD_SendData(~blackimage[i + j * Width]);
  182. }
  183. }
  184. EPD_7IN5_V2_TurnOnDisplay();
  185. }
  186. void EPD_7IN5_V2_WritePicture(const UBYTE *blackimage, UBYTE Block)
  187. {
  188. UDOUBLE Width, Height;
  189. Width =(EPD_7IN5_V2_WIDTH % 8 == 0)?(EPD_7IN5_V2_WIDTH / 8 ):(EPD_7IN5_V2_WIDTH / 8 + 1);
  190. Height = EPD_7IN5_V2_HEIGHT;
  191. if(Block == 0){
  192. EPD_SendCommand(0x13);
  193. }
  194. for (UDOUBLE j = 0; j < Height/2; j++) {
  195. for (UDOUBLE i = 0; i < Width; i++) {
  196. EPD_SendData(~blackimage[i + j * Width]);
  197. }
  198. }
  199. if(Block == 1){
  200. EPD_7IN5_V2_TurnOnDisplay();
  201. }
  202. }
  203. /******************************************************************************
  204. function : Enter sleep mode
  205. parameter:
  206. ******************************************************************************/
  207. void EPD_7IN5_V2_Sleep(void)
  208. {
  209. EPD_SendCommand(0X02); //power off
  210. EPD_WaitUntilIdle();
  211. EPD_SendCommand(0X07); //deep sleep
  212. EPD_SendData(0xA5);
  213. }