EPD_7in5_HD.c 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. /*****************************************************************************
  2. * | File : EPD_7in5_HD.c
  3. * | Author : Waveshare team
  4. * | Function : Electronic paper driver
  5. * | Info :
  6. *----------------
  7. * | This version: V1.0
  8. * | Date : 2020-04-25
  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_HD.h"
  32. #include "Debug.h"
  33. /******************************************************************************
  34. function : Software reset
  35. parameter:
  36. ******************************************************************************/
  37. static void EPD_7IN5_HD_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_7IN5_HD_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_7IN5_HD_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_7IN5_HD_WaitUntilIdle(void)
  75. {
  76. Debug("e-Paper busy\r\n");
  77. do{
  78. DEV_Delay_ms(10);
  79. }while(DEV_Digital_Read(EPD_BUSY_PIN) == 1);
  80. DEV_Delay_ms(200);
  81. Debug("e-Paper busy release\r\n");
  82. }
  83. /******************************************************************************
  84. function : Initialize the e-Paper register
  85. parameter:
  86. ******************************************************************************/
  87. void EPD_7IN5_HD_Init(void)
  88. {
  89. EPD_7IN5_HD_Reset();
  90. EPD_7IN5_HD_WaitUntilIdle();
  91. EPD_7IN5_HD_SendCommand(0x12); //SWRESET
  92. EPD_7IN5_HD_WaitUntilIdle();
  93. EPD_7IN5_HD_SendCommand(0x46); // Auto Write Red RAM
  94. EPD_7IN5_HD_SendData(0xf7);
  95. EPD_7IN5_HD_WaitUntilIdle();
  96. EPD_7IN5_HD_SendCommand(0x47); // Auto Write B/W RAM
  97. EPD_7IN5_HD_SendData(0xf7);
  98. EPD_7IN5_HD_WaitUntilIdle();
  99. EPD_7IN5_HD_SendCommand(0x0C); // Soft start setting
  100. EPD_7IN5_HD_SendData(0xAE);
  101. EPD_7IN5_HD_SendData(0xC7);
  102. EPD_7IN5_HD_SendData(0xC3);
  103. EPD_7IN5_HD_SendData(0xC0);
  104. EPD_7IN5_HD_SendData(0x40);
  105. EPD_7IN5_HD_SendCommand(0x01); // Set MUX as 527
  106. EPD_7IN5_HD_SendData(0xAF);
  107. EPD_7IN5_HD_SendData(0x02);
  108. EPD_7IN5_HD_SendData(0x01);//0x01
  109. EPD_7IN5_HD_SendCommand(0x11); // Data entry mode
  110. EPD_7IN5_HD_SendData(0x01);
  111. EPD_7IN5_HD_SendCommand(0x44);
  112. EPD_7IN5_HD_SendData(0x00); // RAM x address start at 0
  113. EPD_7IN5_HD_SendData(0x00);
  114. EPD_7IN5_HD_SendData(0x6F);
  115. EPD_7IN5_HD_SendData(0x03);
  116. EPD_7IN5_HD_SendCommand(0x45);
  117. EPD_7IN5_HD_SendData(0xAF);
  118. EPD_7IN5_HD_SendData(0x02);
  119. EPD_7IN5_HD_SendData(0x00);
  120. EPD_7IN5_HD_SendData(0x00);
  121. EPD_7IN5_HD_SendCommand(0x3C); // VBD
  122. EPD_7IN5_HD_SendData(0x05); // LUT1, for white
  123. EPD_7IN5_HD_SendCommand(0x18);
  124. EPD_7IN5_HD_SendData(0X80);
  125. EPD_7IN5_HD_SendCommand(0x22);
  126. EPD_7IN5_HD_SendData(0XB1); //Load Temperature and waveform setting.
  127. EPD_7IN5_HD_SendCommand(0x20);
  128. EPD_7IN5_HD_WaitUntilIdle();
  129. EPD_7IN5_HD_SendCommand(0x4E); // set RAM x address count to 0;
  130. EPD_7IN5_HD_SendData(0x00);
  131. EPD_7IN5_HD_SendData(0x00);
  132. EPD_7IN5_HD_SendCommand(0x4F);
  133. EPD_7IN5_HD_SendData(0x00);
  134. EPD_7IN5_HD_SendData(0x00);
  135. // return 0;
  136. }
  137. /******************************************************************************
  138. function : Clear screen
  139. parameter:
  140. ******************************************************************************/
  141. void EPD_7IN5_HD_Clear(void)
  142. {
  143. UDOUBLE Width, Height;
  144. Width =(EPD_7IN5_HD_WIDTH % 8 == 0)?(EPD_7IN5_HD_WIDTH / 8 ):(EPD_7IN5_HD_WIDTH / 8 + 1);
  145. Height = EPD_7IN5_HD_HEIGHT;
  146. EPD_7IN5_HD_SendCommand(0x4F);
  147. EPD_7IN5_HD_SendData(0x00);
  148. EPD_7IN5_HD_SendData(0x00);
  149. EPD_7IN5_HD_SendCommand(0x24);
  150. UDOUBLE i;
  151. for(i=0; i<58080; i++) {
  152. EPD_7IN5_HD_SendData(0xff);
  153. }
  154. EPD_7IN5_HD_SendCommand(0x26);
  155. for(i=0; i<Height*Width; i++){
  156. EPD_7IN5_HD_SendData(0xff);
  157. }
  158. EPD_7IN5_HD_SendCommand(0x22);
  159. EPD_7IN5_HD_SendData(0xF7);//Load LUT from MCU(0x32)
  160. EPD_7IN5_HD_SendCommand(0x20);
  161. DEV_Delay_ms(10);
  162. EPD_7IN5_HD_WaitUntilIdle();
  163. }
  164. /******************************************************************************
  165. function : Sends the image buffer in RAM to e-Paper and displays
  166. parameter:
  167. ******************************************************************************/
  168. void EPD_7IN5_HD_Display(const UBYTE *blackimage)
  169. {
  170. UDOUBLE Width, Height;
  171. Width =(EPD_7IN5_HD_WIDTH % 8 == 0)?(EPD_7IN5_HD_WIDTH / 8 ):(EPD_7IN5_HD_WIDTH / 8 + 1);
  172. Height = EPD_7IN5_HD_HEIGHT;
  173. EPD_7IN5_HD_SendCommand(0x4F);
  174. EPD_7IN5_HD_SendData(0x00);
  175. EPD_7IN5_HD_SendData(0x00);
  176. EPD_7IN5_HD_SendCommand(0x24);
  177. UDOUBLE i;
  178. for (UDOUBLE j = 0; j < Height; j++) {
  179. for (UDOUBLE i = 0; i < Width; i++) {
  180. EPD_7IN5_HD_SendData(blackimage[i + j * Width]);
  181. }
  182. }
  183. EPD_7IN5_HD_SendCommand(0x26);
  184. for(i=0; i<Height*Width; i++) {
  185. EPD_7IN5_HD_SendData(0xff);
  186. }
  187. EPD_7IN5_HD_SendCommand(0x22);
  188. EPD_7IN5_HD_SendData(0xF7);//Load LUT from MCU(0x32)
  189. EPD_7IN5_HD_SendCommand(0x20);
  190. DEV_Delay_ms(10);
  191. EPD_7IN5_HD_WaitUntilIdle();
  192. }
  193. void EPD_7IN5_HD_WritePicture(const UBYTE *blackimage, UBYTE Block)
  194. {
  195. UDOUBLE Width, Height;
  196. Width =(EPD_7IN5_HD_WIDTH % 8 == 0)?(EPD_7IN5_HD_WIDTH / 8 ):(EPD_7IN5_HD_WIDTH / 8 + 1);
  197. Height = EPD_7IN5_HD_HEIGHT;
  198. if(Block == 0){
  199. EPD_7IN5_HD_SendCommand(0x4F);
  200. EPD_7IN5_HD_SendData(0x00);
  201. EPD_7IN5_HD_SendData(0x00);
  202. EPD_7IN5_HD_SendCommand(0x24);
  203. for (UDOUBLE j = 0; j < Height/2; j++) {
  204. for (UDOUBLE i = 0; i < Width; i++) {
  205. EPD_7IN5_HD_SendData(blackimage[i + j * Width]);
  206. }
  207. }
  208. }else if(Block == 1){
  209. for (UDOUBLE j = 0; j < Height/2; j++) {
  210. for (UDOUBLE i = 0; i < Width; i++) {
  211. EPD_7IN5_HD_SendData(blackimage[i + j * Width]);
  212. }
  213. }
  214. EPD_7IN5_HD_SendCommand(0x22);
  215. EPD_7IN5_HD_SendData(0xF7);//Load LUT from MCU(0x32)
  216. EPD_7IN5_HD_SendCommand(0x20);
  217. DEV_Delay_ms(10);
  218. EPD_7IN5_HD_WaitUntilIdle();
  219. }
  220. }
  221. /******************************************************************************
  222. function : Sends the image buffer in RAM to e-Paper and displays
  223. parameter: image_width and start_X :Must be a multiple of 8
  224. ******************************************************************************/
  225. void EPD_7IN5_HD_DisplayImage(const UBYTE *blackimage,UDOUBLE start_X, UDOUBLE start_Y, UDOUBLE image_width, UDOUBLE image_high)
  226. {
  227. UDOUBLE Width, Height;
  228. Width =(EPD_7IN5_HD_WIDTH % 8 == 0)?(EPD_7IN5_HD_WIDTH / 8 ):(EPD_7IN5_HD_WIDTH / 8 + 1);
  229. Height = EPD_7IN5_HD_HEIGHT;
  230. EPD_7IN5_HD_SendCommand(0x4F);
  231. EPD_7IN5_HD_SendData(0x00);
  232. EPD_7IN5_HD_SendData(0x00);
  233. //send black data
  234. EPD_7IN5_HD_SendCommand(0x24);
  235. for (UDOUBLE j = 0; j < Height; j++) {
  236. for (UDOUBLE i = 0; i < Width; i++) {
  237. if((i>=start_X/8) && (i<(start_X+image_width)/8) && (j>=start_Y) && (j<(start_Y+image_high))){
  238. EPD_7IN5_HD_SendData(~blackimage[i-start_X/8 + (j - start_Y) * image_width/8]);
  239. }else{
  240. EPD_7IN5_HD_SendData(0xff);
  241. }
  242. }
  243. }
  244. EPD_7IN5_HD_SendCommand(0x22);
  245. EPD_7IN5_HD_SendData(0xF7);//Load LUT from MCU(0x32)
  246. EPD_7IN5_HD_SendCommand(0x20);
  247. DEV_Delay_ms(10);
  248. EPD_7IN5_HD_WaitUntilIdle();
  249. }
  250. /******************************************************************************
  251. function : Enter sleep mode
  252. parameter:
  253. ******************************************************************************/
  254. void EPD_7IN5_HD_Sleep(void)
  255. {
  256. EPD_7IN5_HD_SendCommand(0x10);
  257. EPD_7IN5_HD_SendData(0x01);
  258. }