EPD_5in83b_V2.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. /*****************************************************************************
  2. * | File : EPD_5in83b_V2.c
  3. * | Author : Waveshare team
  4. * | Function : Electronic paper driver
  5. * | Info :
  6. *----------------
  7. * | This version: V1.0
  8. * | Date : 2020-07-04
  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_5in83b_V2.h"
  31. #include "Debug.h"
  32. /******************************************************************************
  33. function : Software reset
  34. parameter:
  35. ******************************************************************************/
  36. static void EPD_5IN83B_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(1);
  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_5IN83B_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_5IN83B_V2_SendData(UBYTE Data)
  63. {
  64. DEV_Digital_Write(EPD_CS_PIN, 0);
  65. DEV_Digital_Write(EPD_DC_PIN, 1);
  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. void EPD_5IN83B_V2_WaitUntilIdle(void)
  74. {
  75. EPD_Busy_WaitUntil(1,1);
  76. // unsigned char count = 100;
  77. // Debug("e-Paper busy\r\n");
  78. // UBYTE busy;
  79. // do
  80. // {
  81. // EPD_5IN83B_V2_SendCommand(0x71);
  82. // busy = DEV_Digital_Read(EPD_BUSY_PIN);
  83. // busy =!(busy & 0x01);
  84. // if(!(count--))
  85. // {
  86. // Debug("error: e-Paper busy timeout!!!\r\n");
  87. // break;
  88. // }
  89. // else
  90. // DEV_Delay_ms(100);
  91. // }
  92. // while(busy);
  93. // DEV_Delay_ms(200);
  94. // Debug("e-Paper busy release\r\n");
  95. }
  96. /******************************************************************************
  97. function : Turn On Display
  98. parameter:
  99. ******************************************************************************/
  100. static void EPD_5IN83B_V2_TurnOnDisplay(void)
  101. {
  102. EPD_5IN83B_V2_SendCommand(0x12); //DISPLAY REFRESH
  103. DEV_Delay_ms(100); //!!!The delay here is necessary, 200uS at least!!!
  104. EPD_5IN83B_V2_WaitUntilIdle(); //waiting for the electronic paper IC to release the idle signal
  105. }
  106. /******************************************************************************
  107. function : Initialize the e-Paper register
  108. parameter:
  109. ******************************************************************************/
  110. UBYTE EPD_5IN83B_V2_Init(UBYTE mode)
  111. {
  112. EPD_5IN83B_V2_Reset();
  113. EPD_5IN83B_V2_WaitUntilIdle();
  114. EPD_5IN83B_V2_SendCommand(0x01); //POWER SETTING
  115. EPD_5IN83B_V2_SendData (0x07);
  116. EPD_5IN83B_V2_SendData (0x07); //VGH=20V,VGL=-20V
  117. EPD_5IN83B_V2_SendData (0x3f); //VDH=15V
  118. EPD_5IN83B_V2_SendData (0x3f); //VDL=-15V
  119. EPD_5IN83B_V2_SendCommand(0x04); //POWER ON
  120. DEV_Delay_ms(100);
  121. EPD_5IN83B_V2_WaitUntilIdle(); //waiting for the electronic paper IC to release the idle signal
  122. EPD_5IN83B_V2_SendCommand(0X00); //PANNEL SETTING
  123. EPD_5IN83B_V2_SendData(0x0F); //KW-3f KWR-2F BWROTP 0f BWOTP 1f
  124. EPD_5IN83B_V2_SendCommand(0x61); //tres
  125. EPD_5IN83B_V2_SendData (0x02); //source 648
  126. EPD_5IN83B_V2_SendData (0x88);
  127. EPD_5IN83B_V2_SendData (0x01); //gate 480
  128. EPD_5IN83B_V2_SendData (0xe0);
  129. EPD_5IN83B_V2_SendCommand(0X15);
  130. EPD_5IN83B_V2_SendData(0x00);
  131. EPD_5IN83B_V2_SendCommand(0X50); //VCOM AND DATA INTERVAL SETTING
  132. EPD_5IN83B_V2_SendData(0x11);
  133. EPD_5IN83B_V2_SendData(0x07);
  134. EPD_5IN83B_V2_SendCommand(0X60); //TCON SETTING
  135. EPD_5IN83B_V2_SendData(0x22);
  136. return 0;
  137. }
  138. /******************************************************************************
  139. function : Clear screen
  140. parameter:
  141. ******************************************************************************/
  142. void EPD_5IN83B_V2_Clear(void)
  143. {
  144. UWORD Width, Height;
  145. Width =(EPD_5IN83B_V2_WIDTH % 8 == 0)?(EPD_5IN83B_V2_WIDTH / 8 ):(EPD_5IN83B_V2_WIDTH / 8 + 1);
  146. Height = EPD_5IN83B_V2_HEIGHT;
  147. UWORD i;
  148. EPD_5IN83B_V2_SendCommand(0x10);
  149. for(i=0; i<Width*Height; i++) {
  150. EPD_5IN83B_V2_SendData(0xff);
  151. }
  152. EPD_5IN83B_V2_SendCommand(0x13);
  153. for(i=0; i<Width*Height; i++) {
  154. EPD_5IN83B_V2_SendData(0x00);
  155. }
  156. EPD_5IN83B_V2_TurnOnDisplay();
  157. }
  158. /******************************************************************************
  159. function : Clear screen
  160. parameter:
  161. ******************************************************************************/
  162. void EPD_5IN83B_V2_Clear_C(UBYTE color)
  163. {
  164. UWORD Width, Height;
  165. Width =(EPD_5IN83B_V2_WIDTH % 8 == 0)?(EPD_5IN83B_V2_WIDTH / 8 ):(EPD_5IN83B_V2_WIDTH / 8 + 1);
  166. Height = EPD_5IN83B_V2_HEIGHT;
  167. UWORD i;
  168. if(color == 0) {
  169. EPD_5IN83B_V2_SendCommand(0x10);
  170. for(i=0; i<Width*Height; i++) {
  171. EPD_5IN83B_V2_SendData(0xff);
  172. }
  173. EPD_5IN83B_V2_SendCommand(0x13);
  174. for(i=0; i<Width*Height; i++) {
  175. EPD_5IN83B_V2_SendData(0x00);
  176. }
  177. }
  178. else if(color == 1) {
  179. EPD_5IN83B_V2_SendCommand(0x10);
  180. for(i=0; i<Width*Height; i++) {
  181. EPD_5IN83B_V2_SendData(0xff);
  182. }
  183. EPD_5IN83B_V2_SendCommand(0x13);
  184. for(i=0; i<Width*Height; i++) {
  185. EPD_5IN83B_V2_SendData(0xff);
  186. }
  187. }
  188. else if(color == 2) {
  189. EPD_5IN83B_V2_SendCommand(0x10);
  190. for(i=0; i<Width*Height; i++) {
  191. EPD_5IN83B_V2_SendData(0x00);
  192. }
  193. EPD_5IN83B_V2_SendCommand(0x13);
  194. for(i=0; i<Width*Height; i++) {
  195. EPD_5IN83B_V2_SendData(0x00);
  196. }
  197. }
  198. EPD_5IN83B_V2_TurnOnDisplay();
  199. }
  200. /******************************************************************************
  201. function : Sends the image buffer in RAM to e-Paper and displays
  202. parameter:
  203. ******************************************************************************/
  204. void EPD_5IN83B_V2_Display(const UBYTE *blackimage, const UBYTE *ryimage)
  205. {
  206. UDOUBLE Width, Height;
  207. Width =(EPD_5IN83B_V2_WIDTH % 8 == 0)?(EPD_5IN83B_V2_WIDTH / 8 ):(EPD_5IN83B_V2_WIDTH / 8 + 1);
  208. Height = EPD_5IN83B_V2_HEIGHT;
  209. //send black data
  210. EPD_5IN83B_V2_SendCommand(0x10);
  211. for (UDOUBLE j = 0; j < Height; j++) {
  212. for (UDOUBLE i = 0; i < Width; i++) {
  213. EPD_5IN83B_V2_SendData(blackimage[i + j * Width]);
  214. }
  215. }
  216. //send red data
  217. EPD_5IN83B_V2_SendCommand(0x13);
  218. for (UDOUBLE j = 0; j < Height; j++) {
  219. for (UDOUBLE i = 0; i < Width; i++) {
  220. EPD_5IN83B_V2_SendData(~ryimage[i + j * Width]);
  221. }
  222. }
  223. EPD_5IN83B_V2_TurnOnDisplay();
  224. }
  225. void EPD_5IN83B_V2_DisplayPicture(const UBYTE *blackimage,UBYTE Block)
  226. {
  227. UDOUBLE Width, Height;
  228. Width =(EPD_5IN83B_V2_WIDTH % 8 == 0)?(EPD_5IN83B_V2_WIDTH / 8 ):(EPD_5IN83B_V2_WIDTH / 8 + 1);
  229. Height = EPD_5IN83B_V2_HEIGHT;
  230. if(Block == 0){
  231. EPD_5IN83B_V2_SendCommand(0x10);
  232. for (UDOUBLE j = 0; j < Height/4; j++) {
  233. for (UDOUBLE i = 0; i < Width; i++) {
  234. EPD_5IN83B_V2_SendData(blackimage[i + j * Width]);
  235. }
  236. }
  237. }else if(Block == 1){
  238. for (UDOUBLE j = 0; j < Height/4; j++) {
  239. for (UDOUBLE i = 0; i < Width; i++) {
  240. EPD_5IN83B_V2_SendData(blackimage[i + j * Width]);
  241. }
  242. }
  243. }else if(Block == 2){
  244. for (UDOUBLE j = 0; j < Height/4; j++) {
  245. for (UDOUBLE i = 0; i < Width; i++) {
  246. EPD_5IN83B_V2_SendData(blackimage[i + j * Width]);
  247. }
  248. }
  249. }else if(Block == 3){
  250. for (UDOUBLE j = 0; j < Height/4; j++) {
  251. for (UDOUBLE i = 0; i < Width; i++) {
  252. EPD_5IN83B_V2_SendData(blackimage[i + j * Width]);
  253. }
  254. }
  255. }
  256. else if(Block == 4){
  257. EPD_5IN83B_V2_SendCommand(0x13);
  258. for (UDOUBLE j = 0; j < Height/4; j++) {
  259. for (UDOUBLE i = 0; i < Width; i++) {
  260. EPD_5IN83B_V2_SendData(~blackimage[i + j * Width]);
  261. }
  262. }
  263. }else if(Block == 5){
  264. for (UDOUBLE j = 0; j < Height/4; j++) {
  265. for (UDOUBLE i = 0; i < Width; i++) {
  266. EPD_5IN83B_V2_SendData(~blackimage[i + j * Width]);
  267. }
  268. }
  269. }else if(Block == 6){
  270. for (UDOUBLE j = 0; j < Height/4; j++) {
  271. for (UDOUBLE i = 0; i < Width; i++) {
  272. EPD_5IN83B_V2_SendData(~blackimage[i + j * Width]);
  273. }
  274. }
  275. }else if(Block == 7){
  276. for (UDOUBLE j = 0; j < Height/4; j++) {
  277. for (UDOUBLE i = 0; i < Width; i++) {
  278. EPD_5IN83B_V2_SendData(~blackimage[i + j * Width]);
  279. }
  280. }
  281. EPD_5IN83B_V2_TurnOnDisplay();
  282. }
  283. }
  284. /******************************************************************************
  285. function : Enter sleep mode
  286. parameter:
  287. ******************************************************************************/
  288. void EPD_5IN83B_V2_Sleep(void)
  289. {
  290. EPD_5IN83B_V2_SendCommand(0X02); //power off
  291. EPD_5IN83B_V2_WaitUntilIdle(); //waiting for the electronic paper IC to release the idle signal
  292. EPD_5IN83B_V2_SendCommand(0X07); //deep sleep
  293. EPD_5IN83B_V2_SendData(0xA5);
  294. }