2
0

EPD_1in54c.c 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. /*****************************************************************************
  2. * | File : EPD_1in54c.C
  3. * | Author : Waveshare team
  4. * | Function : 1.54inch e-paper c
  5. * | Info :
  6. *----------------
  7. * | This version: V3.1
  8. * | Date : 2019-06-12
  9. * | Info :
  10. * -----------------------------------------------------------------------------
  11. * V3.1(2019-06-12):
  12. * 1.Change:
  13. * EPD_Reset() => EPD_1IN54C_Reset()
  14. * EPD_SendCommand() => EPD_1IN54C_SendCommand()
  15. * EPD_SendData() => EPD_1IN54C_SendData()
  16. * EPD_WaitUntilIdle() => EPD_1IN54C_ReadBusy()
  17. * EPD_Init() => EPD_1IN54C_Init()
  18. * EPD_Clear() => EPD_1IN54C_Clear()
  19. * EPD_Display() => EPD_1IN54C_Display()
  20. * EPD_Sleep() => EPD_1IN54C_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 SOURCE_AND_GATE_START_SETTING 0x62
  44. * #define GET_STATUS 0x71
  45. * #define AUTO_MEASURE_VCOM 0x80
  46. * #define VCOM_VALUE 0x81
  47. * #define VCM_DC_SETTING_REGISTER 0x82
  48. * #define PROGRAM_MODE 0xA0
  49. * #define ACTIVE_PROGRAM 0xA1
  50. * #define READ_OTP_DATA 0xA2
  51. * -----------------------------------------------------------------------------
  52. * V2.0(2018-11-14):
  53. * 1.Remove:ImageBuff[EPD_1IN54C_HEIGHT * EPD_1IN54C_WIDTH / 8]
  54. * 2.Change:EPD_Display(UBYTE *Image)
  55. * Need to pass parameters: pointer to cached data
  56. * 3.Change:
  57. * EPD_RST -> EPD_RST_PIN
  58. * EPD_DC -> EPD_DC_PIN
  59. * EPD_CS -> EPD_CS_PIN
  60. * EPD_BUSY -> EPD_BUSY_PIN
  61. #
  62. # Permission is hereby granted, free of charge, to any person obtaining a copy
  63. # of this software and associated documnetation files (the "Software"), to deal
  64. # in the Software without restriction, including without limitation the rights
  65. # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  66. # copies of the Software, and to permit persons to whom the Software is
  67. # furished to do so, subject to the following conditions:
  68. #
  69. # The above copyright notice and this permission notice shall be included in
  70. # all copies or substantial portions of the Software.
  71. #
  72. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  73. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  74. # FITNESS OR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  75. # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  76. # LIABILITY WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  77. # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  78. # THE SOFTWARE.
  79. #
  80. ******************************************************************************/
  81. #include "EPD_1in54c.h"
  82. #include "Debug.h"
  83. /******************************************************************************
  84. function : Software reset
  85. parameter:
  86. ******************************************************************************/
  87. static void EPD_1IN54C_Reset(void)
  88. {
  89. DEV_Digital_Write(EPD_RST_PIN, 1);
  90. DEV_Delay_ms(10);
  91. DEV_Digital_Write(EPD_RST_PIN, 0);
  92. DEV_Delay_ms(2);
  93. DEV_Digital_Write(EPD_RST_PIN, 1);
  94. DEV_Delay_ms(10);
  95. }
  96. /******************************************************************************
  97. function : send command
  98. parameter:
  99. Reg : Command register
  100. ******************************************************************************/
  101. static void EPD_1IN54C_SendCommand(UBYTE Reg)
  102. {
  103. DEV_Digital_Write(EPD_DC_PIN, 0);
  104. DEV_Digital_Write(EPD_CS_PIN, 0);
  105. DEV_SPI_WriteByte(Reg);
  106. DEV_Digital_Write(EPD_CS_PIN, 1);
  107. }
  108. /******************************************************************************
  109. function : send data
  110. parameter:
  111. Data : Write data
  112. ******************************************************************************/
  113. static void EPD_1IN54C_SendData(UBYTE Data)
  114. {
  115. DEV_Digital_Write(EPD_DC_PIN, 1);
  116. DEV_Digital_Write(EPD_CS_PIN, 0);
  117. DEV_SPI_WriteByte(Data);
  118. DEV_Digital_Write(EPD_CS_PIN, 1);
  119. }
  120. /******************************************************************************
  121. function : Wait until the busy_pin goes LOW
  122. parameter:
  123. ******************************************************************************/
  124. static void EPD_1IN54C_ReadBusy(void)
  125. {
  126. unsigned char busy;
  127. do {
  128. EPD_1IN54C_SendCommand(0x71);
  129. busy = DEV_Digital_Read(EPD_BUSY_PIN);
  130. busy =!(busy & 0x01);
  131. } while(busy);
  132. DEV_Delay_ms(200);
  133. }
  134. /******************************************************************************
  135. function : Initialize the e-Paper register
  136. parameter:
  137. ******************************************************************************/
  138. void EPD_1IN54C_Init(void)
  139. {
  140. EPD_1IN54C_Reset();
  141. EPD_1IN54C_SendCommand(0x06); //boost soft start
  142. EPD_1IN54C_SendData(0x17);
  143. EPD_1IN54C_SendData(0x17);
  144. EPD_1IN54C_SendData(0x17);
  145. EPD_1IN54C_SendCommand(0x04);
  146. EPD_1IN54C_ReadBusy();
  147. EPD_1IN54C_SendCommand(0x00); //panel setting
  148. EPD_1IN54C_SendData(0x0f); //LUT from OTP£¬160x296
  149. EPD_1IN54C_SendData(0x0d); //VCOM to 0V fast
  150. EPD_1IN54C_SendCommand(0x61); //resolution setting
  151. EPD_1IN54C_SendData(0x98); //152
  152. EPD_1IN54C_SendData(0x00); //152
  153. EPD_1IN54C_SendData(0x98);
  154. EPD_1IN54C_SendCommand(0X50); //VCOM AND DATA INTERVAL SETTING
  155. EPD_1IN54C_SendData(0x77); //WBmode:VBDF 17|D7 VBDW 97 VBDB 57 WBRmode:VBDF F7 VBDW 77 VBDB 37 VBDR B7
  156. }
  157. /******************************************************************************
  158. function : Clear screen
  159. parameter:
  160. ******************************************************************************/
  161. void EPD_1IN54C_Clear(void)
  162. {
  163. UWORD Width, Height;
  164. Width = (EPD_1IN54C_WIDTH % 8 == 0)? (EPD_1IN54C_WIDTH / 8 ): (EPD_1IN54C_WIDTH / 8 + 1);
  165. Height = EPD_1IN54C_HEIGHT;
  166. //send black data
  167. EPD_1IN54C_SendCommand(0x10);
  168. for(UWORD i = 0; i < Height; i++) {
  169. for(UWORD i = 0; i < Width; i++) {
  170. EPD_1IN54C_SendData(0xFF);
  171. }
  172. }
  173. //send red data
  174. EPD_1IN54C_SendCommand(0x13);
  175. for(UWORD i = 0; i < Height; i++) {
  176. for(UWORD i = 0; i < Width; i++) {
  177. EPD_1IN54C_SendData(0xFF);
  178. }
  179. }
  180. //Display refresh
  181. EPD_1IN54C_SendCommand(0x12);
  182. EPD_1IN54C_ReadBusy();
  183. }
  184. /******************************************************************************
  185. function : Sends the image buffer in RAM to e-Paper and displays
  186. parameter:
  187. ******************************************************************************/
  188. void EPD_1IN54C_Display(const UBYTE *blackimage, const UBYTE *redimage)
  189. {
  190. UWORD Width, Height;
  191. Width = (EPD_1IN54C_WIDTH % 8 == 0)? (EPD_1IN54C_WIDTH / 8 ): (EPD_1IN54C_WIDTH / 8 + 1);
  192. Height = EPD_1IN54C_HEIGHT;
  193. //send black data
  194. EPD_1IN54C_SendCommand(0x10);
  195. for (UWORD j = 0; j < Height; j++) {
  196. for (UWORD i = 0; i < Width; i++) {
  197. EPD_1IN54C_SendData(blackimage[i + j * Width]);
  198. }
  199. }
  200. //send red data
  201. EPD_1IN54C_SendCommand(0x13);
  202. for (UWORD j = 0; j < Height; j++) {
  203. for (UWORD i = 0; i < Width; i++) {
  204. EPD_1IN54C_SendData(redimage[i + j * Width]);
  205. }
  206. }
  207. //Display refresh
  208. EPD_1IN54C_SendCommand(0x12);
  209. EPD_1IN54C_ReadBusy();
  210. }
  211. /******************************************************************************
  212. function : Enter sleep mode
  213. parameter:
  214. ******************************************************************************/
  215. void EPD_1IN54C_Sleep(void)
  216. {
  217. EPD_1IN54C_SendCommand(0X02); //power off
  218. EPD_1IN54C_ReadBusy();
  219. EPD_1IN54C_SendCommand(0X07); //deep sleep
  220. EPD_1IN54C_SendData(0xA5);
  221. }