EPD_7in5_HD.c 9.8 KB

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