EPD_7in5_HD.c 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  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(0xFF);
  118. EPD_7IN5_HD_SendData(0x03);
  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. }
  136. /******************************************************************************
  137. function : Clear screen
  138. parameter:
  139. ******************************************************************************/
  140. void EPD_7IN5_HD_Clear(void)
  141. {
  142. UDOUBLE Width, Height;
  143. Width =(EPD_7IN5_HD_WIDTH % 8 == 0)?(EPD_7IN5_HD_WIDTH / 8 ):(EPD_7IN5_HD_WIDTH / 8 + 1);
  144. Height = EPD_7IN5_HD_HEIGHT;
  145. EPD_7IN5_HD_SendCommand(0x4F);
  146. EPD_7IN5_HD_SendData(0x00);
  147. EPD_7IN5_HD_SendData(0x00);
  148. EPD_7IN5_HD_SendCommand(0x24);
  149. UDOUBLE i;
  150. for(i=0; i<58080; i++) {
  151. EPD_7IN5_HD_SendData(0xff);
  152. }
  153. EPD_7IN5_HD_SendCommand(0x26);
  154. for(i=0; i<Height*Width; i++){
  155. EPD_7IN5_HD_SendData(0xff);
  156. }
  157. EPD_7IN5_HD_SendCommand(0x22);
  158. EPD_7IN5_HD_SendData(0xF7);//Load LUT from MCU(0x32)
  159. EPD_7IN5_HD_SendCommand(0x20);
  160. DEV_Delay_ms(10);
  161. EPD_7IN5_HD_WaitUntilIdle();
  162. }
  163. /******************************************************************************
  164. function : Sends the image buffer in RAM to e-Paper and displays
  165. parameter:
  166. ******************************************************************************/
  167. void EPD_7IN5_HD_Display(const UBYTE *blackimage)
  168. {
  169. UDOUBLE Width, Height;
  170. Width =(EPD_7IN5_HD_WIDTH % 8 == 0)?(EPD_7IN5_HD_WIDTH / 8 ):(EPD_7IN5_HD_WIDTH / 8 + 1);
  171. Height = EPD_7IN5_HD_HEIGHT;
  172. EPD_7IN5_HD_SendCommand(0x4F);
  173. EPD_7IN5_HD_SendData(0x00);
  174. EPD_7IN5_HD_SendData(0x00);
  175. EPD_7IN5_HD_SendCommand(0x24);
  176. UDOUBLE i;
  177. for (UDOUBLE j = 0; j < Height; j++) {
  178. for (UDOUBLE i = 0; i < Width; i++) {
  179. EPD_7IN5_HD_SendData(blackimage[i + j * Width]);
  180. }
  181. }
  182. EPD_7IN5_HD_SendCommand(0x26);
  183. for(i=0; i<Height*Width; i++) {
  184. EPD_7IN5_HD_SendData(0xff);
  185. }
  186. EPD_7IN5_HD_SendCommand(0x22);
  187. EPD_7IN5_HD_SendData(0xF7);//Load LUT from MCU(0x32)
  188. EPD_7IN5_HD_SendCommand(0x20);
  189. DEV_Delay_ms(10);
  190. EPD_7IN5_HD_WaitUntilIdle();
  191. }
  192. /******************************************************************************
  193. function : Enter sleep mode
  194. parameter:
  195. ******************************************************************************/
  196. void EPD_7IN5_HD_Sleep(void)
  197. {
  198. EPD_7IN5_HD_SendCommand(0x10);
  199. EPD_7IN5_HD_SendData(0x01);
  200. }