EPD_1in54_V2.c 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. /*****************************************************************************
  2. * | File : EPD_1in54_V2.c
  3. * | Author : Waveshare team
  4. * | Function : 1.54inch e-paper V2
  5. * | Info :
  6. *----------------
  7. * | This version: V1.0
  8. * | Date : 2019-06-11
  9. * | Info :
  10. #
  11. # Permission is hereby granted, free of charge, to any person obtaining a copy
  12. # of this software and associated documnetation files (the "Software"), to deal
  13. # in the Software without restriction, including without limitation the rights
  14. # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  15. # copies of the Software, and to permit persons to whom the Software is
  16. # furished to do so, subject to the following conditions:
  17. #
  18. # The above copyright notice and this permission notice shall be included in
  19. # all copies or substantial portions of the Software.
  20. #
  21. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  22. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  23. # FITNESS OR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  24. # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  25. # LIABILITY WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  26. # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  27. # THE SOFTWARE.
  28. #
  29. ******************************************************************************/
  30. #include "EPD_1in54_V2.h"
  31. #include "Debug.h"
  32. /******************************************************************************
  33. function : Software reset
  34. parameter:
  35. ******************************************************************************/
  36. static void EPD_1IN54_V2_Reset(void)
  37. {
  38. DEV_Digital_Write(EPD_RST_PIN, 1);
  39. DEV_Delay_ms(200);
  40. DEV_Digital_Write(EPD_RST_PIN, 0);
  41. DEV_Delay_ms(2);
  42. DEV_Digital_Write(EPD_RST_PIN, 1);
  43. DEV_Delay_ms(200);
  44. }
  45. /******************************************************************************
  46. function : send command
  47. parameter:
  48. Reg : Command register
  49. ******************************************************************************/
  50. static void EPD_1IN54_V2_SendCommand(UBYTE Reg)
  51. {
  52. DEV_Digital_Write(EPD_DC_PIN, 0);
  53. DEV_Digital_Write(EPD_CS_PIN, 0);
  54. DEV_SPI_WriteByte(Reg);
  55. DEV_Digital_Write(EPD_CS_PIN, 1);
  56. }
  57. /******************************************************************************
  58. function : send data
  59. parameter:
  60. Data : Write data
  61. ******************************************************************************/
  62. static void EPD_1IN54_V2_SendData(UBYTE Data)
  63. {
  64. DEV_Digital_Write(EPD_DC_PIN, 1);
  65. DEV_Digital_Write(EPD_CS_PIN, 0);
  66. DEV_SPI_WriteByte(Data);
  67. DEV_Digital_Write(EPD_CS_PIN, 1);
  68. }
  69. /******************************************************************************
  70. function : Wait until the busy_pin goes LOW
  71. parameter:
  72. ******************************************************************************/
  73. static void EPD_1IN54_V2_ReadBusy(void)
  74. {
  75. Debug("e-Paper busy\r\n");
  76. while(DEV_Digital_Read(EPD_BUSY_PIN) == 1) { //LOW: idle, HIGH: busy
  77. DEV_Delay_ms(100);
  78. }
  79. Debug("e-Paper busy release\r\n");
  80. }
  81. /******************************************************************************
  82. function : Turn On Display full
  83. parameter:
  84. ******************************************************************************/
  85. static void EPD_1IN54_V2_TurnOnDisplay(void)
  86. {
  87. EPD_1IN54_V2_SendCommand(0x22);
  88. EPD_1IN54_V2_SendData(0xF7);
  89. EPD_1IN54_V2_SendCommand(0x20);
  90. EPD_1IN54_V2_ReadBusy();
  91. }
  92. /******************************************************************************
  93. function : Turn On Display part
  94. parameter:
  95. ******************************************************************************/
  96. static void EPD_1IN54_V2_TurnOnDisplayPart(void)
  97. {
  98. EPD_1IN54_V2_SendCommand(0x22);
  99. EPD_1IN54_V2_SendData(0xFF);
  100. EPD_1IN54_V2_SendCommand(0x20);
  101. EPD_1IN54_V2_ReadBusy();
  102. }
  103. /******************************************************************************
  104. function : Initialize the e-Paper register
  105. parameter:
  106. ******************************************************************************/
  107. void EPD_1IN54_V2_Init(void)
  108. {
  109. EPD_1IN54_V2_Reset();
  110. EPD_1IN54_V2_ReadBusy();
  111. EPD_1IN54_V2_SendCommand(0x12); //SWRESET
  112. EPD_1IN54_V2_ReadBusy();
  113. EPD_1IN54_V2_SendCommand(0x01); //Driver output control
  114. EPD_1IN54_V2_SendData(0xC7);
  115. EPD_1IN54_V2_SendData(0x00);
  116. EPD_1IN54_V2_SendData(0x01);
  117. EPD_1IN54_V2_SendCommand(0x11); //data entry mode
  118. EPD_1IN54_V2_SendData(0x01);
  119. EPD_1IN54_V2_SendCommand(0x44); //set Ram-X address start/end position
  120. EPD_1IN54_V2_SendData(0x00);
  121. EPD_1IN54_V2_SendData(0x18); //0x0C-->(18+1)*8=200
  122. EPD_1IN54_V2_SendCommand(0x45); //set Ram-Y address start/end position
  123. EPD_1IN54_V2_SendData(0xC7); //0xC7-->(199+1)=200
  124. EPD_1IN54_V2_SendData(0x00);
  125. EPD_1IN54_V2_SendData(0x00);
  126. EPD_1IN54_V2_SendData(0x00);
  127. EPD_1IN54_V2_SendCommand(0x3C); //BorderWavefrom
  128. EPD_1IN54_V2_SendData(0x01);
  129. EPD_1IN54_V2_SendCommand(0x18);
  130. EPD_1IN54_V2_SendData(0x80);
  131. EPD_1IN54_V2_SendCommand(0x22); // //Load Temperature and waveform setting.
  132. EPD_1IN54_V2_SendData(0XB1);
  133. EPD_1IN54_V2_SendCommand(0x20);
  134. EPD_1IN54_V2_SendCommand(0x4E); // set RAM x address count to 0;
  135. EPD_1IN54_V2_SendData(0x00);
  136. EPD_1IN54_V2_SendCommand(0x4F); // set RAM y address count to 0X199;
  137. EPD_1IN54_V2_SendData(0xC7);
  138. EPD_1IN54_V2_SendData(0x00);
  139. EPD_1IN54_V2_ReadBusy();
  140. }
  141. /******************************************************************************
  142. function : Clear screen
  143. parameter:
  144. ******************************************************************************/
  145. void EPD_1IN54_V2_Clear(void)
  146. {
  147. UWORD Width, Height;
  148. Width = (EPD_1IN54_V2_WIDTH % 8 == 0)? (EPD_1IN54_V2_WIDTH / 8 ): (EPD_1IN54_V2_WIDTH / 8 + 1);
  149. Height = EPD_1IN54_V2_HEIGHT;
  150. EPD_1IN54_V2_SendCommand(0x24);
  151. for (UWORD j = 0; j < Height; j++) {
  152. for (UWORD i = 0; i < Width; i++) {
  153. EPD_1IN54_V2_SendData(0XFF);
  154. }
  155. }
  156. EPD_1IN54_V2_SendCommand(0x26);
  157. for (UWORD j = 0; j < Height; j++) {
  158. for (UWORD i = 0; i < Width; i++) {
  159. EPD_1IN54_V2_SendData(0XFF);
  160. }
  161. }
  162. EPD_1IN54_V2_TurnOnDisplay();
  163. }
  164. /******************************************************************************
  165. function : Sends the image buffer in RAM to e-Paper and displays
  166. parameter:
  167. ******************************************************************************/
  168. void EPD_1IN54_V2_Display(UBYTE *Image)
  169. {
  170. UWORD Width, Height;
  171. Width = (EPD_1IN54_V2_WIDTH % 8 == 0)? (EPD_1IN54_V2_WIDTH / 8 ): (EPD_1IN54_V2_WIDTH / 8 + 1);
  172. Height = EPD_1IN54_V2_HEIGHT;
  173. UDOUBLE Addr = 0;
  174. EPD_1IN54_V2_SendCommand(0x24);
  175. for (UWORD j = 0; j < Height; j++) {
  176. for (UWORD i = 0; i < Width; i++) {
  177. Addr = i + j * Width;
  178. EPD_1IN54_V2_SendData(Image[Addr]);
  179. }
  180. }
  181. EPD_1IN54_V2_TurnOnDisplay();
  182. }
  183. /******************************************************************************
  184. function : The image of the previous frame must be uploaded, otherwise the
  185. first few seconds will display an exception.
  186. parameter:
  187. ******************************************************************************/
  188. void EPD_1IN54_V2_DisplayPartBaseImage(UBYTE *Image)
  189. {
  190. UWORD Width, Height;
  191. Width = (EPD_1IN54_V2_WIDTH % 8 == 0)? (EPD_1IN54_V2_WIDTH / 8 ): (EPD_1IN54_V2_WIDTH / 8 + 1);
  192. Height = EPD_1IN54_V2_HEIGHT;
  193. UDOUBLE Addr = 0;
  194. EPD_1IN54_V2_SendCommand(0x24);
  195. for (UWORD j = 0; j < Height; j++) {
  196. for (UWORD i = 0; i < Width; i++) {
  197. Addr = i + j * Width;
  198. EPD_1IN54_V2_SendData(Image[Addr]);
  199. }
  200. }
  201. EPD_1IN54_V2_SendCommand(0x26);
  202. for (UWORD j = 0; j < Height; j++) {
  203. for (UWORD i = 0; i < Width; i++) {
  204. Addr = i + j * Width;
  205. EPD_1IN54_V2_SendData(Image[Addr]);
  206. }
  207. }
  208. EPD_1IN54_V2_TurnOnDisplayPart();
  209. }
  210. /******************************************************************************
  211. function : Sends the image buffer in RAM to e-Paper and displays
  212. parameter:
  213. ******************************************************************************/
  214. void EPD_1IN54_V2_DisplayPart(UBYTE *Image)
  215. {
  216. UWORD Width, Height;
  217. Width = (EPD_1IN54_V2_WIDTH % 8 == 0)? (EPD_1IN54_V2_WIDTH / 8 ): (EPD_1IN54_V2_WIDTH / 8 + 1);
  218. Height = EPD_1IN54_V2_HEIGHT;
  219. DEV_Digital_Write(EPD_RST_PIN, 0);
  220. DEV_Delay_ms(10);
  221. DEV_Digital_Write(EPD_RST_PIN, 1);
  222. DEV_Delay_ms(10);
  223. EPD_1IN54_V2_SendCommand(0x3C); //BorderWavefrom
  224. EPD_1IN54_V2_SendData(0x80);
  225. UDOUBLE Addr = 0;
  226. EPD_1IN54_V2_SendCommand(0x24);
  227. for (UWORD j = 0; j < Height; j++) {
  228. for (UWORD i = 0; i < Width; i++) {
  229. Addr = i + j * Width;
  230. EPD_1IN54_V2_SendData(Image[Addr]);
  231. }
  232. }
  233. EPD_1IN54_V2_TurnOnDisplayPart();
  234. }
  235. /******************************************************************************
  236. function : Enter sleep mode
  237. parameter:
  238. ******************************************************************************/
  239. void EPD_1IN54_V2_Sleep(void)
  240. {
  241. EPD_1IN54_V2_SendCommand(0x10); //enter deep sleep
  242. EPD_1IN54_V2_SendData(0x01);
  243. DEV_Delay_ms(100);
  244. }