EPD_2in13g_V2.cpp 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. /*****************************************************************************
  2. * | File : EPD_2in13g_V2.c
  3. * | Author : Waveshare team
  4. * | Function : 2inch13 e-paper (G)
  5. * | Info :
  6. *----------------
  7. * | This version: V1.0
  8. * | Date : 2024-10-21
  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_2in13g_V2.h"
  32. #include "Debug.h"
  33. /******************************************************************************
  34. function : Software reset
  35. parameter:
  36. ******************************************************************************/
  37. static void EPD_2IN13G_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(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_2IN13G_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_2IN13G_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 HIGH
  72. parameter:
  73. ******************************************************************************/
  74. void EPD_2IN13G_V2_ReadBusy(void)
  75. {
  76. Debug("e-Paper busy\r\n");
  77. DEV_Delay_ms(100);
  78. while(DEV_Digital_Read(EPD_BUSY_PIN) != 1) { //HIGH: idle, LOW: busy
  79. DEV_Delay_ms(100);
  80. }
  81. Debug("e-Paper busy release\r\n");
  82. }
  83. /******************************************************************************
  84. function : Turn On Display
  85. parameter:
  86. ******************************************************************************/
  87. static void EPD_2IN13G_V2_TurnOnDisplay(void)
  88. {
  89. EPD_2IN13G_V2_SendCommand(0x12); // DISPLAY_REFRESH
  90. EPD_2IN13G_V2_SendData(0x00);
  91. EPD_2IN13G_V2_ReadBusy();
  92. }
  93. /******************************************************************************
  94. function : Initialize the e-Paper register
  95. parameter:
  96. ******************************************************************************/
  97. void EPD_2IN13G_V2_Init(void)
  98. {
  99. EPD_2IN13G_V2_Reset();
  100. EPD_2IN13G_V2_ReadBusy();
  101. EPD_2IN13G_V2_SendCommand(0x61); //TRES
  102. EPD_2IN13G_V2_SendData(0x00); // EPD_2IN13G_WIDTH_H
  103. EPD_2IN13G_V2_SendData(0x7C); // EPD_2IN13G_WIDTH_L
  104. EPD_2IN13G_V2_SendData(0x00); // EPD_2IN13G_HEIGHT_H
  105. EPD_2IN13G_V2_SendData(0xFA); // EPD_2IN13G_HEIGHT_L
  106. EPD_2IN13G_V2_SendCommand(0xE9);
  107. EPD_2IN13G_V2_SendData(0x01);
  108. EPD_2IN13G_V2_SendCommand(0x04);
  109. EPD_2IN13G_V2_ReadBusy();
  110. }
  111. void EPD_2IN13G_V2_Init_Fast(void)
  112. {
  113. EPD_2IN13G_V2_Reset();
  114. EPD_2IN13G_V2_ReadBusy();
  115. EPD_2IN13G_V2_SendCommand(0x61); //TRES
  116. EPD_2IN13G_V2_SendData(0x00); // EPD_2IN13G_WIDTH_H
  117. EPD_2IN13G_V2_SendData(0x7C); // EPD_2IN13G_WIDTH_L
  118. EPD_2IN13G_V2_SendData(0x00); // EPD_2IN13G_HEIGHT_H
  119. EPD_2IN13G_V2_SendData(0xFA); // EPD_2IN13G_HEIGHT_L
  120. EPD_2IN13G_V2_SendCommand(0xe0);
  121. EPD_2IN13G_V2_SendData(0x02);
  122. EPD_2IN13G_V2_SendCommand(0xe6);
  123. EPD_2IN13G_V2_SendData(90);
  124. EPD_2IN13G_V2_SendCommand(0xa5);
  125. EPD_2IN13G_V2_ReadBusy();
  126. EPD_2IN13G_V2_SendCommand(0xE9);
  127. EPD_2IN13G_V2_SendData(0x01);
  128. EPD_2IN13G_V2_SendCommand(0x04);
  129. EPD_2IN13G_V2_ReadBusy();
  130. }
  131. /******************************************************************************
  132. function : Clear screen
  133. parameter:
  134. ******************************************************************************/
  135. void EPD_2IN13G_V2_Clear(UBYTE color)
  136. {
  137. UWORD Width, Height;
  138. Width = (EPD_2IN13G_V2_WIDTH % 4 == 0)? (EPD_2IN13G_V2_WIDTH / 4 ): (EPD_2IN13G_V2_WIDTH / 4 + 1);
  139. Height = EPD_2IN13G_V2_HEIGHT;
  140. EPD_2IN13G_V2_SendCommand(0x10);
  141. for (UWORD j = 0; j < Height; j++) {
  142. for (UWORD i = 0; i < Width; i++) {
  143. EPD_2IN13G_V2_SendData((color << 6) | (color << 4) | (color << 2) | color);
  144. }
  145. }
  146. EPD_2IN13G_V2_TurnOnDisplay();
  147. }
  148. /******************************************************************************
  149. function : Sends the image buffer in RAM to e-Paper and displays
  150. parameter:
  151. ******************************************************************************/
  152. void EPD_2IN13G_V2_Display(UBYTE *Image)
  153. {
  154. UWORD Width, Height;
  155. Width = (EPD_2IN13G_V2_WIDTH % 4 == 0)? (EPD_2IN13G_V2_WIDTH / 4 ): (EPD_2IN13G_V2_WIDTH / 4 + 1);
  156. Height = EPD_2IN13G_V2_HEIGHT;
  157. EPD_2IN13G_V2_SendCommand(0x10);
  158. for (UWORD j = 0; j < Height; j++) {
  159. for (UWORD i = 0; i < Width; i++) {
  160. if(i < 31 ) EPD_2IN13G_V2_SendData(Image[i + j * Width]);
  161. else EPD_2IN13G_V2_SendData(0x00);
  162. }
  163. }
  164. EPD_2IN13G_V2_TurnOnDisplay();
  165. }
  166. /******************************************************************************
  167. function : Enter sleep mode
  168. parameter:
  169. ******************************************************************************/
  170. void EPD_2IN13G_V2_Sleep(void)
  171. {
  172. EPD_2IN13G_V2_SendCommand(0x02); //power off
  173. EPD_2IN13G_V2_SendData(0X00);
  174. EPD_2IN13G_V2_ReadBusy(); //waiting for the electronic paper IC to release the idle signal
  175. DEV_Delay_ms(100); //!!!The delay here is necessary,100mS at least!!!
  176. EPD_2IN13G_V2_SendCommand(0x07); //deep sleep
  177. EPD_2IN13G_V2_SendData(0XA5);
  178. }