EPD_7in3e.c 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. /*****************************************************************************
  2. * | File : EPD_7in3e.c
  3. * | Author : Waveshare team
  4. * | Function : 7.3inch e-Paper (F) Driver
  5. * | Info :
  6. *----------------
  7. * | This version: V1.0
  8. * | Date : 2022-10-20
  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_7in3e.h"
  32. #include "Debug.h"
  33. /******************************************************************************
  34. function : Software reset
  35. parameter:
  36. ******************************************************************************/
  37. static void EPD_7IN3E_Reset(void)
  38. {
  39. DEV_Digital_Write(EPD_RST_PIN, 1);
  40. DEV_Delay_ms(20);
  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(20);
  45. }
  46. /******************************************************************************
  47. function : send command
  48. parameter:
  49. Reg : Command register
  50. ******************************************************************************/
  51. static void EPD_7IN3E_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_7IN3E_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_7IN3E_ReadBusyH(void)
  75. {
  76. Debug("e-Paper busy H\r\n");
  77. while(!DEV_Digital_Read(EPD_BUSY_PIN)) { //LOW: busy, HIGH: idle
  78. DEV_Delay_ms(1);
  79. }
  80. Debug("e-Paper busy H release\r\n");
  81. }
  82. /******************************************************************************
  83. function : Turn On Display
  84. parameter:
  85. ******************************************************************************/
  86. static void EPD_7IN3E_TurnOnDisplay(void)
  87. {
  88. EPD_7IN3E_SendCommand(0x04); // POWER_ON
  89. EPD_7IN3E_ReadBusyH();
  90. //Second setting
  91. EPD_7IN3E_SendCommand(0x06);
  92. EPD_7IN3E_SendData(0x6F);
  93. EPD_7IN3E_SendData(0x1F);
  94. EPD_7IN3E_SendData(0x17);
  95. EPD_7IN3E_SendData(0x49);
  96. EPD_7IN3E_SendCommand(0x12); // DISPLAY_REFRESH
  97. EPD_7IN3E_SendData(0x00);
  98. EPD_7IN3E_ReadBusyH();
  99. EPD_7IN3E_SendCommand(0x02); // POWER_OFF
  100. EPD_7IN3E_SendData(0X00);
  101. EPD_7IN3E_ReadBusyH();
  102. }
  103. /******************************************************************************
  104. function : Initialize the e-Paper register
  105. parameter:
  106. ******************************************************************************/
  107. void EPD_7IN3E_Init(void)
  108. {
  109. EPD_7IN3E_Reset();
  110. EPD_7IN3E_ReadBusyH();
  111. DEV_Delay_ms(30);
  112. EPD_7IN3E_SendCommand(0xAA); // CMDH
  113. EPD_7IN3E_SendData(0x49);
  114. EPD_7IN3E_SendData(0x55);
  115. EPD_7IN3E_SendData(0x20);
  116. EPD_7IN3E_SendData(0x08);
  117. EPD_7IN3E_SendData(0x09);
  118. EPD_7IN3E_SendData(0x18);
  119. EPD_7IN3E_SendCommand(0x01);//
  120. EPD_7IN3E_SendData(0x3F);
  121. EPD_7IN3E_SendCommand(0x00);
  122. EPD_7IN3E_SendData(0x5F);
  123. EPD_7IN3E_SendData(0x69);
  124. EPD_7IN3E_SendCommand(0x03);
  125. EPD_7IN3E_SendData(0x00);
  126. EPD_7IN3E_SendData(0x54);
  127. EPD_7IN3E_SendData(0x00);
  128. EPD_7IN3E_SendData(0x44);
  129. EPD_7IN3E_SendCommand(0x05);
  130. EPD_7IN3E_SendData(0x40);
  131. EPD_7IN3E_SendData(0x1F);
  132. EPD_7IN3E_SendData(0x1F);
  133. EPD_7IN3E_SendData(0x2C);
  134. EPD_7IN3E_SendCommand(0x06);
  135. EPD_7IN3E_SendData(0x6F);
  136. EPD_7IN3E_SendData(0x1F);
  137. EPD_7IN3E_SendData(0x17);
  138. EPD_7IN3E_SendData(0x49);
  139. EPD_7IN3E_SendCommand(0x08);
  140. EPD_7IN3E_SendData(0x6F);
  141. EPD_7IN3E_SendData(0x1F);
  142. EPD_7IN3E_SendData(0x1F);
  143. EPD_7IN3E_SendData(0x22);
  144. EPD_7IN3E_SendCommand(0x30);
  145. EPD_7IN3E_SendData(0x03);
  146. EPD_7IN3E_SendCommand(0x50);
  147. EPD_7IN3E_SendData(0x3F);
  148. EPD_7IN3E_SendCommand(0x60);
  149. EPD_7IN3E_SendData(0x02);
  150. EPD_7IN3E_SendData(0x00);
  151. EPD_7IN3E_SendCommand(0x61);
  152. EPD_7IN3E_SendData(0x03);
  153. EPD_7IN3E_SendData(0x20);
  154. EPD_7IN3E_SendData(0x01);
  155. EPD_7IN3E_SendData(0xE0);
  156. EPD_7IN3E_SendCommand(0x84);
  157. EPD_7IN3E_SendData(0x01);
  158. EPD_7IN3E_SendCommand(0xE3);
  159. EPD_7IN3E_SendData(0x2F);
  160. EPD_7IN3E_SendCommand(0x04); //PWR on
  161. EPD_7IN3E_ReadBusyH(); //waiting for the electronic paper IC to release the idle signal
  162. }
  163. /******************************************************************************
  164. function : Clear screen
  165. parameter:
  166. ******************************************************************************/
  167. void EPD_7IN3E_Clear(UBYTE color)
  168. {
  169. UWORD Width, Height;
  170. Width = (EPD_7IN3E_WIDTH % 2 == 0)? (EPD_7IN3E_WIDTH / 2 ): (EPD_7IN3E_WIDTH / 2 + 1);
  171. Height = EPD_7IN3E_HEIGHT;
  172. EPD_7IN3E_SendCommand(0x10);
  173. for (UWORD j = 0; j < Height; j++) {
  174. for (UWORD i = 0; i < Width; i++) {
  175. EPD_7IN3E_SendData((color<<4)|color);
  176. }
  177. }
  178. EPD_7IN3E_TurnOnDisplay();
  179. }
  180. /******************************************************************************
  181. function : show 7 kind of color block
  182. parameter:
  183. ******************************************************************************/
  184. void EPD_7IN3E_Show7Block(void)
  185. {
  186. unsigned long i, j, k;
  187. unsigned char const Color_seven[6] =
  188. {EPD_7IN3E_BLACK, EPD_7IN3E_YELLOW, EPD_7IN3E_RED, EPD_7IN3E_BLUE, EPD_7IN3E_GREEN, EPD_7IN3E_WHITE};
  189. EPD_7IN3E_SendCommand(0x10);
  190. for(k = 0 ; k < 6; k ++) {
  191. for(j = 0 ; j < 20000; j ++) {
  192. EPD_7IN3E_SendData((Color_seven[k]<<4) |Color_seven[k]);
  193. }
  194. }
  195. EPD_7IN3E_TurnOnDisplay();
  196. }
  197. void EPD_7IN3E_Show(void)
  198. {
  199. unsigned long k,o;
  200. unsigned char const Color_seven[6] =
  201. {EPD_7IN3E_BLACK, EPD_7IN3E_YELLOW, EPD_7IN3E_RED, EPD_7IN3E_BLUE, EPD_7IN3E_GREEN, EPD_7IN3E_WHITE};
  202. UWORD Width, Height;
  203. Width = (EPD_7IN3E_WIDTH % 2 == 0)? (EPD_7IN3E_WIDTH / 2 ): (EPD_7IN3E_WIDTH / 2 + 1);
  204. Height = EPD_7IN3E_HEIGHT;
  205. k = 0;
  206. o = 0;
  207. EPD_7IN3E_SendCommand(0x10);
  208. for (UWORD j = 0; j < Height; j++) {
  209. if((j > 10) && (j<50))
  210. for (UWORD i = 0; i < Width; i++) {
  211. EPD_7IN3E_SendData((Color_seven[0]<<4) |Color_seven[0]);
  212. }
  213. else if(o < Height/2)
  214. for (UWORD i = 0; i < Width; i++) {
  215. EPD_7IN3E_SendData((Color_seven[0]<<4) |Color_seven[0]);
  216. }
  217. else
  218. {
  219. for (UWORD i = 0; i < Width; i++) {
  220. EPD_7IN3E_SendData((Color_seven[k]<<4) |Color_seven[k]);
  221. }
  222. k++ ;
  223. if(k >= 6)
  224. k = 0;
  225. }
  226. o++ ;
  227. if(o >= Height)
  228. o = 0;
  229. }
  230. EPD_7IN3E_TurnOnDisplay();
  231. }
  232. /******************************************************************************
  233. function : Sends the image buffer in RAM to e-Paper and displays
  234. parameter:
  235. ******************************************************************************/
  236. void EPD_7IN3E_Display(UBYTE *Image)
  237. {
  238. UWORD Width, Height;
  239. Width = (EPD_7IN3E_WIDTH % 2 == 0)? (EPD_7IN3E_WIDTH / 2 ): (EPD_7IN3E_WIDTH / 2 + 1);
  240. Height = EPD_7IN3E_HEIGHT;
  241. EPD_7IN3E_SendCommand(0x10);
  242. for (UWORD j = 0; j < Height; j++) {
  243. for (UWORD i = 0; i < Width; i++) {
  244. EPD_7IN3E_SendData(Image[i + j * Width]);
  245. }
  246. }
  247. EPD_7IN3E_TurnOnDisplay();
  248. }
  249. void EPD_7IN3E_DisplayPart(const UBYTE *Image, UWORD xstart, UWORD ystart, UWORD image_width, UWORD image_heigh)
  250. {
  251. unsigned long i, j;
  252. UWORD Width, Height;
  253. Width = (EPD_7IN3E_WIDTH % 2 == 0)? (EPD_7IN3E_WIDTH / 2 ): (EPD_7IN3E_WIDTH / 2 + 1);
  254. Height = EPD_7IN3E_HEIGHT;
  255. EPD_7IN3E_SendCommand(0x10);
  256. for(i=0; i<Height; i++) {
  257. for(j=0; j<Width; j++) {
  258. if(i<image_heigh+ystart && i>=ystart && j<(image_width+xstart)/2 && j>=xstart/2) {
  259. EPD_7IN3E_SendData(Image[(j-xstart/2) + (image_width/2*(i-ystart))]);
  260. }
  261. else {
  262. EPD_7IN3E_SendData(0x11);
  263. }
  264. }
  265. }
  266. EPD_7IN3E_TurnOnDisplay();
  267. }
  268. /******************************************************************************
  269. function : Enter sleep mode
  270. parameter:
  271. ******************************************************************************/
  272. void EPD_7IN3E_Sleep(void)
  273. {
  274. EPD_7IN3E_SendCommand(0X02); // DEEP_SLEEP
  275. EPD_7IN3E_SendData(0x00);
  276. EPD_7IN3E_ReadBusyH();
  277. EPD_7IN3E_SendCommand(0x07); // DEEP_SLEEP
  278. EPD_7IN3E_SendData(0XA5);
  279. }