EPD_1in54b_V2.c 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. /*****************************************************************************
  2. * | File : EPD_1in54b_V2.h
  3. * | Author : Waveshare team
  4. * | Function : 1.54inch e-paper b V2
  5. * | Info :
  6. *----------------
  7. * | This version: V1.0
  8. * | Date : 2020-04-02
  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_1in54b_V2.h"
  32. #include "Debug.h"
  33. /******************************************************************************
  34. function : Software reset
  35. parameter:
  36. ******************************************************************************/
  37. static void EPD_1IN54B_V2_Reset(void)
  38. {
  39. DEV_Digital_Write(EPD_RST_PIN, 1);
  40. DEV_Delay_ms(100);
  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(100);
  45. }
  46. /******************************************************************************
  47. function : send command
  48. parameter:
  49. Reg : Command register
  50. ******************************************************************************/
  51. static void EPD_1IN54B_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_1IN54B_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_1IN54B_V2_ReadBusy(void)
  75. {
  76. EPD_Busy_WaitUntil(0,0);
  77. // unsigned char count = 100;
  78. // Debug("e-Paper busy\r\n");
  79. // while(1) {
  80. // if(DEV_Digital_Read(EPD_BUSY_PIN) == 0)
  81. // break;
  82. // if(!(count--))
  83. // {
  84. // Debug("error: e-Paper busy timeout!!!\r\n");
  85. // break;
  86. // }
  87. // else
  88. // DEV_Delay_ms(100);
  89. // }
  90. // DEV_Delay_ms(200);
  91. // Debug("e-Paper busy release\r\n");
  92. }
  93. /******************************************************************************
  94. function : Initialize the e-Paper register
  95. parameter:
  96. ******************************************************************************/
  97. void EPD_1IN54B_V2_Init(UBYTE mode)
  98. {
  99. EPD_1IN54B_V2_Reset();
  100. EPD_1IN54B_V2_ReadBusy();
  101. EPD_1IN54B_V2_SendCommand(0x12); //SWRESET
  102. EPD_1IN54B_V2_ReadBusy();
  103. EPD_1IN54B_V2_SendCommand(0x01); //Driver output control
  104. EPD_1IN54B_V2_SendData(0xC7);
  105. EPD_1IN54B_V2_SendData(0x00);
  106. EPD_1IN54B_V2_SendData(0x01);
  107. EPD_1IN54B_V2_SendCommand(0x11); //data entry mode
  108. EPD_1IN54B_V2_SendData(0x01);
  109. EPD_1IN54B_V2_SendCommand(0x44); //set Ram-X address start/end position
  110. EPD_1IN54B_V2_SendData(0x00);
  111. EPD_1IN54B_V2_SendData(0x18); //0x18-->(24+1)*8=200
  112. EPD_1IN54B_V2_SendCommand(0x45); //set Ram-Y address start/end position
  113. EPD_1IN54B_V2_SendData(0xC7); //0xC7-->(199+1)=200
  114. EPD_1IN54B_V2_SendData(0x00);
  115. EPD_1IN54B_V2_SendData(0x00);
  116. EPD_1IN54B_V2_SendData(0x00);
  117. EPD_1IN54B_V2_SendCommand(0x3C); //BorderWavefrom
  118. EPD_1IN54B_V2_SendData(0x05);
  119. EPD_1IN54B_V2_SendCommand(0x18); //Read built-in temperature sensor
  120. EPD_1IN54B_V2_SendData(0x80);
  121. EPD_1IN54B_V2_SendCommand(0x4E); // set RAM x address count to 0;
  122. EPD_1IN54B_V2_SendData(0x00);
  123. EPD_1IN54B_V2_SendCommand(0x4F); // set RAM y address count to 0X199;
  124. EPD_1IN54B_V2_SendData(0xC7);
  125. EPD_1IN54B_V2_SendData(0x00);
  126. EPD_1IN54B_V2_ReadBusy();
  127. }
  128. /******************************************************************************
  129. function : Clear screen
  130. parameter:
  131. ******************************************************************************/
  132. void EPD_1IN54B_V2_Clear(void)
  133. {
  134. unsigned int i;
  135. EPD_1IN54B_V2_SendCommand(0x24); //write RAM for black(0)/white (1)
  136. for(i=0;i<5000;i++)
  137. {
  138. EPD_1IN54B_V2_SendData(0xff);
  139. }
  140. EPD_1IN54B_V2_SendCommand(0x26); //write RAM for black(0)/white (1)
  141. for(i=0;i<5000;i++)
  142. {
  143. EPD_1IN54B_V2_SendData(0x00);
  144. }
  145. EPD_1IN54B_V2_SendCommand(0x22); //Display Update Control
  146. EPD_1IN54B_V2_SendData(0xF7);
  147. EPD_1IN54B_V2_SendCommand(0x20); //Activate Display Update Sequence
  148. EPD_1IN54B_V2_ReadBusy();
  149. }
  150. /******************************************************************************
  151. function : Sends the image buffer in RAM to e-Paper and displays
  152. parameter:
  153. ******************************************************************************/
  154. void EPD_1IN54B_V2_Display(const UBYTE *blackimage, const UBYTE *redimage)
  155. {
  156. UWORD Width, Height;
  157. Width = (EPD_1IN54B_V2_WIDTH % 8 == 0)? (EPD_1IN54B_V2_WIDTH / 8 ): (EPD_1IN54B_V2_WIDTH / 8 + 1);
  158. Height = EPD_1IN54B_V2_HEIGHT;
  159. unsigned int i;
  160. EPD_1IN54B_V2_SendCommand(0x24); //write RAM for black(0)/white (1)
  161. for(i=0;i<Width * Height;i++)
  162. {
  163. EPD_1IN54B_V2_SendData(blackimage[i]);
  164. }
  165. EPD_1IN54B_V2_SendCommand(0x26); //write RAM for black(0)/white (1)
  166. for(i=0;i<Width * Height;i++)
  167. {
  168. EPD_1IN54B_V2_SendData(~redimage[i]);
  169. }
  170. EPD_1IN54B_V2_SendCommand(0x22); //Display Update Control
  171. EPD_1IN54B_V2_SendData(0xF7);
  172. EPD_1IN54B_V2_SendCommand(0x20); //Activate Display Update Sequence
  173. EPD_1IN54B_V2_ReadBusy();
  174. }
  175. /******************************************************************************
  176. function : Enter sleep mode
  177. parameter:
  178. ******************************************************************************/
  179. void EPD_1IN54B_V2_Sleep(void)
  180. {
  181. EPD_1IN54B_V2_SendCommand(0x10); //enter deep sleep
  182. EPD_1IN54B_V2_SendData(0x01);
  183. DEV_Delay_ms(100);
  184. }