EPD_5in83_V2.c 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /*****************************************************************************
  2. * | File : EPD_5in83_V2.c
  3. * | Author : Waveshare team
  4. * | Function : 5.83inch e-paper V2
  5. * | Info :
  6. *----------------
  7. * | This version: V1.0
  8. * | Date : 2020-12-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_5in83_V2.h"
  32. #include "Debug.h"
  33. /******************************************************************************
  34. function : Software reset
  35. parameter:
  36. ******************************************************************************/
  37. static void EPD_5in83_V2_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(3);
  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_5in83_V2_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_5in83_V2_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_5in83_V2_ReadBusy(void)
  75. {
  76. Debug("e-Paper busy\r\n");
  77. do {
  78. EPD_5in83_V2_SendCommand(0x71);
  79. DEV_Delay_ms(50);
  80. }
  81. while(!DEV_Digital_Read(EPD_BUSY_PIN));
  82. Debug("e-Paper busy release\r\n");
  83. DEV_Delay_ms(50);
  84. }
  85. /******************************************************************************
  86. function : Turn On Display
  87. parameter:
  88. ******************************************************************************/
  89. static void EPD_5in83_V2_TurnOnDisplay(void)
  90. {
  91. EPD_5in83_V2_SendCommand(0x12); //DISPLAY REFRESH
  92. DEV_Delay_ms(100); //!!!The delay here is necessary, 200uS at least!!!
  93. EPD_5in83_V2_ReadBusy(); //waiting for the electronic paper IC to release the idle signal
  94. }
  95. /******************************************************************************
  96. function : Initialize the e-Paper register
  97. parameter:
  98. ******************************************************************************/
  99. void EPD_5in83_V2_Init(void)
  100. {
  101. EPD_5in83_V2_Reset();
  102. EPD_5in83_V2_SendCommand(0x01); //POWER SETTING
  103. EPD_5in83_V2_SendData (0x07);
  104. EPD_5in83_V2_SendData (0x07); //VGH=20V,VGL=-20V
  105. EPD_5in83_V2_SendData (0x3f); //VDH=15V
  106. EPD_5in83_V2_SendData (0x3f); //VDL=-15V
  107. EPD_5in83_V2_SendCommand(0x04); //POWER ON
  108. DEV_Delay_ms(100);
  109. EPD_5in83_V2_ReadBusy(); //waiting for the electronic paper IC to release the idle signal
  110. EPD_5in83_V2_SendCommand(0X00); //PANNEL SETTING
  111. EPD_5in83_V2_SendData(0x1F); //KW-3f KWR-2F BWROTP 0f BWOTP 1f
  112. EPD_5in83_V2_SendCommand(0x61); //tres
  113. EPD_5in83_V2_SendData (0x02); //source 648
  114. EPD_5in83_V2_SendData (0x88);
  115. EPD_5in83_V2_SendData (0x01); //gate 480
  116. EPD_5in83_V2_SendData (0xE0);
  117. EPD_5in83_V2_SendCommand(0X15);
  118. EPD_5in83_V2_SendData(0x00);
  119. EPD_5in83_V2_SendCommand(0X50); //VCOM AND DATA INTERVAL SETTING
  120. EPD_5in83_V2_SendData(0x10);
  121. EPD_5in83_V2_SendData(0x07);
  122. EPD_5in83_V2_SendCommand(0X60); //TCON SETTING
  123. EPD_5in83_V2_SendData(0x22);
  124. }
  125. /******************************************************************************
  126. function : Clear screen
  127. parameter:
  128. ******************************************************************************/
  129. void EPD_5in83_V2_Clear(void)
  130. {
  131. UWORD Width, Height, i;
  132. Width = (EPD_5in83_V2_WIDTH % 8 == 0)? (EPD_5in83_V2_WIDTH / 8 ): (EPD_5in83_V2_WIDTH / 8 + 1);
  133. Height = EPD_5in83_V2_HEIGHT;
  134. EPD_5in83_V2_SendCommand(0x10);
  135. for(i=0; i<Width*Height; i++) {
  136. EPD_5in83_V2_SendData(0x00);
  137. }
  138. EPD_5in83_V2_SendCommand(0x13);
  139. for(i=0; i<Width*Height; i++) {
  140. EPD_5in83_V2_SendData(0x00);
  141. }
  142. EPD_5in83_V2_TurnOnDisplay();
  143. }
  144. /******************************************************************************
  145. function : Sends the image buffer in RAM to e-Paper and displays
  146. parameter:
  147. ******************************************************************************/
  148. void EPD_5in83_V2_Display(UBYTE *Image)
  149. {
  150. UWORD Width, Height, i, j;
  151. Width = (EPD_5in83_V2_WIDTH % 8 == 0)? (EPD_5in83_V2_WIDTH / 8 ): (EPD_5in83_V2_WIDTH / 8 + 1);
  152. Height = EPD_5in83_V2_HEIGHT;
  153. EPD_5in83_V2_SendCommand(0x10);
  154. for(i=0;i<Height;i++) {
  155. for(j=0; j<Width; j++) {
  156. EPD_5in83_V2_SendData(0x00);
  157. }
  158. }
  159. EPD_5in83_V2_SendCommand(0x13);
  160. for(i=0;i<Height;i++) {
  161. for(j=0; j<Width; j++) {
  162. EPD_5in83_V2_SendData(~Image[i*Width + j]);
  163. }
  164. }
  165. EPD_5in83_V2_TurnOnDisplay();
  166. }
  167. /******************************************************************************
  168. function : Enter sleep mode
  169. parameter:
  170. ******************************************************************************/
  171. void EPD_5in83_V2_Sleep(void)
  172. {
  173. EPD_5in83_V2_SendCommand(0X02); //power off
  174. EPD_5in83_V2_ReadBusy(); //waiting for the electronic paper IC to release the idle signal
  175. EPD_5in83_V2_SendCommand(0X07); //deep sleep
  176. EPD_5in83_V2_SendData(0xA5);
  177. }