EPD_2in9bc.c 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. /*****************************************************************************
  2. * | File : EPD_2in9bc.c
  3. * | Author : Waveshare team
  4. * | Function : 2.9inch e-paper b&c
  5. * | Info :
  6. *----------------
  7. * | This version: V3.0
  8. * | Date : 2019-06-12
  9. * | Info :
  10. * -----------------------------------------------------------------------------
  11. * V3.0(2019-06-12):
  12. * 1.Change:
  13. * EPD_Reset() => EPD_2IN9BC_Reset()
  14. * EPD_SendCommand() => EPD_2IN9BC_SendCommand()
  15. * EPD_SendData() => EPD_2IN9BC_SendData()
  16. * EPD_WaitUntilIdle() => EPD_2IN9BC_ReadBusy()
  17. * EPD_Init() => EPD_2IN9BC_Init()
  18. * EPD_Clear() => EPD_2IN9BC_Clear()
  19. * EPD_Display() => EPD_2IN9BC_Display()
  20. * EPD_Sleep() => EPD_2IN9BC_Sleep()
  21. * 2.remove commands define:
  22. * #define PANEL_SETTING 0x00
  23. * #define POWER_SETTING 0x01
  24. * #define POWER_OFF 0x02
  25. * #define POWER_OFF_SEQUENCE_SETTING 0x03
  26. * #define POWER_ON 0x04
  27. * #define POWER_ON_MEASURE 0x05
  28. * #define BOOSTER_SOFT_START 0x06
  29. * #define DEEP_SLEEP 0x07
  30. * #define DATA_START_TRANSMISSION_1 0x10
  31. * #define DATA_STOP 0x11
  32. * #define DISPLAY_REFRESH 0x12
  33. * #define DATA_START_TRANSMISSION_2 0x13
  34. * #define PLL_CONTROL 0x30
  35. * #define TEMPERATURE_SENSOR_COMMAND 0x40
  36. * #define TEMPERATURE_SENSOR_CALIBRATION 0x41
  37. * #define TEMPERATURE_SENSOR_WRITE 0x42
  38. * #define TEMPERATURE_SENSOR_READ 0x43
  39. * #define VCOM_AND_DATA_INTERVAL_SETTING 0x50
  40. * #define LOW_POWER_DETECTION 0x51
  41. * #define TCON_SETTING 0x60
  42. * #define TCON_RESOLUTION 0x61
  43. * #define GET_STATUS 0x71
  44. * #define AUTO_MEASURE_VCOM 0x80
  45. * #define VCOM_VALUE 0x81
  46. * #define VCM_DC_SETTING_REGISTER 0x82
  47. * #define PARTIAL_WINDOW 0x90
  48. * #define PARTIAL_IN 0x91
  49. * #define PARTIAL_OUT 0x92
  50. * #define PROGRAM_MODE 0xA0
  51. * #define ACTIVE_PROGRAM 0xA1
  52. * #define READ_OTP_DATA 0xA2
  53. * #define POWER_SAVING 0xE3
  54. * -----------------------------------------------------------------------------
  55. * V2.0(2018-11-06):
  56. * 1.Remove:ImageBuff[EPD_HEIGHT * EPD_WIDTH / 8]
  57. * 2.Change:EPD_Display(UBYTE *Image)
  58. * Need to pass parameters: pointer to cached data
  59. * 3.Change:
  60. * EPD_RST -> EPD_RST_PIN
  61. * EPD_DC -> EPD_DC_PIN
  62. * EPD_CS -> EPD_CS_PIN
  63. * EPD_BUSY -> EPD_BUSY_PIN
  64. #
  65. # Permission is hereby granted, free of charge, to any person obtaining a copy
  66. # of this software and associated documnetation files (the "Software"), to deal
  67. # in the Software without restriction, including without limitation the rights
  68. # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  69. # copies of the Software, and to permit persons to whom the Software is
  70. # furished to do so, subject to the following conditions:
  71. #
  72. # The above copyright notice and this permission notice shall be included in
  73. # all copies or substantial portions of the Software.
  74. #
  75. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  76. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  77. # FITNESS OR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  78. # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  79. # LIABILITY WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  80. # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  81. # THE SOFTWARE.
  82. #
  83. ******************************************************************************/
  84. #include "EPD_2in9bc.h"
  85. #include "Debug.h"
  86. /******************************************************************************
  87. function : Software reset
  88. parameter:
  89. ******************************************************************************/
  90. static void EPD_2IN9BC_Reset(void)
  91. {
  92. DEV_Digital_Write(EPD_RST_PIN, 1);
  93. DEV_Delay_ms(200);
  94. DEV_Digital_Write(EPD_RST_PIN, 0);
  95. DEV_Delay_ms(2);
  96. DEV_Digital_Write(EPD_RST_PIN, 1);
  97. DEV_Delay_ms(200);
  98. }
  99. /******************************************************************************
  100. function : send command
  101. parameter:
  102. Reg : Command register
  103. ******************************************************************************/
  104. static void EPD_2IN9BC_SendCommand(UBYTE Reg)
  105. {
  106. DEV_Digital_Write(EPD_DC_PIN, 0);
  107. DEV_Digital_Write(EPD_CS_PIN, 0);
  108. DEV_SPI_WriteByte(Reg);
  109. DEV_Digital_Write(EPD_CS_PIN, 1);
  110. }
  111. /******************************************************************************
  112. function : send data
  113. parameter:
  114. Data : Write data
  115. ******************************************************************************/
  116. static void EPD_2IN9BC_SendData(UBYTE Data)
  117. {
  118. DEV_Digital_Write(EPD_DC_PIN, 1);
  119. DEV_Digital_Write(EPD_CS_PIN, 0);
  120. DEV_SPI_WriteByte(Data);
  121. DEV_Digital_Write(EPD_CS_PIN, 1);
  122. }
  123. /******************************************************************************
  124. function : Wait until the busy_pin goes LOW
  125. parameter:
  126. ******************************************************************************/
  127. void EPD_2IN9BC_ReadBusy(void)
  128. {
  129. Debug("e-Paper busy\r\n");
  130. while(DEV_Digital_Read(EPD_BUSY_PIN) == 0) { //LOW: idle, HIGH: busy
  131. DEV_Delay_ms(100);
  132. }
  133. Debug("e-Paper busy release\r\n");
  134. }
  135. /******************************************************************************
  136. function : Initialize the e-Paper register
  137. parameter:
  138. ******************************************************************************/
  139. void EPD_2IN9BC_Init(void)
  140. {
  141. EPD_2IN9BC_Reset();
  142. EPD_2IN9BC_SendCommand(0x06); // BOOSTER_SOFT_START
  143. EPD_2IN9BC_SendData(0x17);
  144. EPD_2IN9BC_SendData(0x17);
  145. EPD_2IN9BC_SendData(0x17);
  146. EPD_2IN9BC_SendCommand(0x04); // POWER_ON
  147. EPD_2IN9BC_ReadBusy();
  148. EPD_2IN9BC_SendCommand(0x00); // PANEL_SETTING
  149. EPD_2IN9BC_SendData(0x8F);
  150. EPD_2IN9BC_SendCommand(0x50); // VCOM_AND_DATA_INTERVAL_SETTING
  151. EPD_2IN9BC_SendData(0x77);
  152. EPD_2IN9BC_SendCommand(0x61); // TCON_RESOLUTION
  153. EPD_2IN9BC_SendData(0x80);
  154. EPD_2IN9BC_SendData(0x01);
  155. EPD_2IN9BC_SendData(0x28);
  156. EPD_2IN9BC_SendCommand(0x82); // VCM_DC_SETTING_REGISTER
  157. EPD_2IN9BC_SendData(0X0A);
  158. }
  159. /******************************************************************************
  160. function : Clear screen
  161. parameter:
  162. ******************************************************************************/
  163. void EPD_2IN9BC_Clear(void)
  164. {
  165. UWORD Width = (EPD_2IN9BC_WIDTH % 8 == 0)? (EPD_2IN9BC_WIDTH / 8 ): (EPD_2IN9BC_WIDTH / 8 + 1);
  166. UWORD Height = EPD_2IN9BC_HEIGHT;
  167. //send black data
  168. EPD_2IN9BC_SendCommand(0x10);
  169. for (UWORD j = 0; j < Height; j++) {
  170. for (UWORD i = 0; i < Width; i++) {
  171. EPD_2IN9BC_SendData(0xFF);
  172. }
  173. }
  174. //send red data
  175. EPD_2IN9BC_SendCommand(0x13);
  176. for (UWORD j = 0; j < Height; j++) {
  177. for (UWORD i = 0; i < Width; i++) {
  178. EPD_2IN9BC_SendData(0xFF);
  179. }
  180. }
  181. EPD_2IN9BC_SendCommand(0x12);
  182. EPD_2IN9BC_ReadBusy();
  183. }
  184. /******************************************************************************
  185. function : Sends the image buffer in RAM to e-Paper and displays
  186. parameter:
  187. ******************************************************************************/
  188. void EPD_2IN9BC_Display(const UBYTE *blackimage, const UBYTE *ryimage)
  189. {
  190. UWORD Width, Height;
  191. Width = (EPD_2IN9BC_WIDTH % 8 == 0)? (EPD_2IN9BC_WIDTH / 8 ): (EPD_2IN9BC_WIDTH / 8 + 1);
  192. Height = EPD_2IN9BC_HEIGHT;
  193. EPD_2IN9BC_SendCommand(0x10);
  194. for (UWORD j = 0; j < Height; j++) {
  195. for (UWORD i = 0; i < Width; i++) {
  196. EPD_2IN9BC_SendData(blackimage[i + j * Width]);
  197. }
  198. }
  199. EPD_2IN9BC_SendCommand(0x92);
  200. EPD_2IN9BC_SendCommand(0x13);
  201. for (UWORD j = 0; j < Height; j++) {
  202. for (UWORD i = 0; i < Width; i++) {
  203. EPD_2IN9BC_SendData(ryimage[i + j * Width]);
  204. }
  205. }
  206. EPD_2IN9BC_SendCommand(0x92);
  207. EPD_2IN9BC_SendCommand(0x12);
  208. EPD_2IN9BC_ReadBusy();
  209. }
  210. /******************************************************************************
  211. function : Enter sleep mode
  212. parameter:
  213. ******************************************************************************/
  214. void EPD_2IN9BC_Sleep(void)
  215. {
  216. EPD_2IN9BC_SendCommand(0x02); // POWER_OFF
  217. EPD_2IN9BC_ReadBusy();
  218. EPD_2IN9BC_SendCommand(0x07); // DEEP_SLEEP
  219. EPD_2IN9BC_SendData(0xA5); // check code
  220. }