st7735.h 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. /* vim: set ai et ts=4 sw=4: */
  2. #ifndef __ST7735_H__
  3. #define __ST7735_H__
  4. #include "fonts.h"
  5. #include <stdbool.h>
  6. #define ST7735_MADCTL_MY 0x80
  7. #define ST7735_MADCTL_MX 0x40
  8. #define ST7735_MADCTL_MV 0x20
  9. #define ST7735_MADCTL_ML 0x10
  10. #define ST7735_MADCTL_RGB 0x00
  11. #define ST7735_MADCTL_BGR 0x08
  12. #define ST7735_MADCTL_MH 0x04
  13. /*** Redefine if necessary ***/
  14. #define ST7735_SPI_PORT SPID1
  15. //#define ST7735_RES_Pin 0
  16. //#define ST7735_RES_GPIO_Port GPIOB
  17. #define ST7735_CS_Pin 4
  18. #define ST7735_CS_GPIO_Port GPIOA
  19. #define ST7735_DC_Pin 6
  20. #define ST7735_DC_GPIO_Port GPIOA
  21. // AliExpress/eBay 1.8" display, default orientation
  22. /*
  23. #define ST7735_IS_160X128 1
  24. #define ST7735_WIDTH 128
  25. #define ST7735_HEIGHT 160
  26. #define ST7735_XSTART 0
  27. #define ST7735_YSTART 0
  28. #define ST7735_ROTATION (ST7735_MADCTL_MX | ST7735_MADCTL_MY)
  29. */
  30. // AliExpress/eBay 1.8" display, rotate right
  31. #define ST7735_IS_160X128 1
  32. #define ST7735_WIDTH 160
  33. #define ST7735_HEIGHT 128
  34. #define ST7735_XSTART 0
  35. #define ST7735_YSTART 0
  36. #define ST7735_ROTATION (ST7735_MADCTL_MY | ST7735_MADCTL_MV)
  37. // AliExpress/eBay 1.8" display, rotate left
  38. /*
  39. #define ST7735_IS_160X128 1
  40. #define ST7735_WIDTH 160
  41. #define ST7735_HEIGHT 128
  42. #define ST7735_XSTART 0
  43. #define ST7735_YSTART 0
  44. #define ST7735_ROTATION (ST7735_MADCTL_MX | ST7735_MADCTL_MV)
  45. */
  46. // AliExpress/eBay 1.8" display, upside down
  47. /*
  48. #define ST7735_IS_160X128 1
  49. #define ST7735_WIDTH 128
  50. #define ST7735_HEIGHT 160
  51. #define ST7735_XSTART 0
  52. #define ST7735_YSTART 0
  53. #define ST7735_ROTATION (0)
  54. */
  55. // WaveShare ST7735S-based 1.8" display, default orientation
  56. /*
  57. #define ST7735_IS_160X128 1
  58. #define ST7735_WIDTH 128
  59. #define ST7735_HEIGHT 160
  60. #define ST7735_XSTART 2
  61. #define ST7735_YSTART 1
  62. #define ST7735_ROTATION (ST7735_MADCTL_MX | ST7735_MADCTL_MY | ST7735_MADCTL_RGB)
  63. */
  64. // WaveShare ST7735S-based 1.8" display, rotate right
  65. /*
  66. #define ST7735_IS_160X128 1
  67. #define ST7735_WIDTH 160
  68. #define ST7735_HEIGHT 128
  69. #define ST7735_XSTART 1
  70. #define ST7735_YSTART 2
  71. #define ST7735_ROTATION (ST7735_MADCTL_MY | ST7735_MADCTL_MV | ST7735_MADCTL_RGB)
  72. */
  73. // WaveShare ST7735S-based 1.8" display, rotate left
  74. /*
  75. #define ST7735_IS_160X128 1
  76. #define ST7735_WIDTH 160
  77. #define ST7735_HEIGHT 128
  78. #define ST7735_XSTART 1
  79. #define ST7735_YSTART 2
  80. #define ST7735_ROTATION (ST7735_MADCTL_MX | ST7735_MADCTL_MV | ST7735_MADCTL_RGB)
  81. */
  82. // WaveShare ST7735S-based 1.8" display, upside down
  83. /*
  84. #define ST7735_IS_160X128 1
  85. #define ST7735_WIDTH 128
  86. #define ST7735_HEIGHT 160
  87. #define ST7735_XSTART 2
  88. #define ST7735_YSTART 1
  89. #define ST7735_ROTATION (ST7735_MADCTL_RGB)
  90. */
  91. // 1.44" display, default orientation
  92. /*
  93. #define ST7735_IS_128X128 1
  94. #define ST7735_WIDTH 128
  95. #define ST7735_HEIGHT 128
  96. #define ST7735_XSTART 2
  97. #define ST7735_YSTART 3
  98. #define ST7735_ROTATION (ST7735_MADCTL_MX | ST7735_MADCTL_MY | ST7735_MADCTL_BGR)
  99. */
  100. // 1.44" display, rotate right
  101. /*
  102. #define ST7735_IS_128X128 1
  103. #define ST7735_WIDTH 128
  104. #define ST7735_HEIGHT 128
  105. #define ST7735_XSTART 3
  106. #define ST7735_YSTART 2
  107. #define ST7735_ROTATION (ST7735_MADCTL_MY | ST7735_MADCTL_MV | ST7735_MADCTL_BGR)
  108. */
  109. // 1.44" display, rotate left
  110. /*
  111. #define ST7735_IS_128X128 1
  112. #define ST7735_WIDTH 128
  113. #define ST7735_HEIGHT 128
  114. #define ST7735_XSTART 1
  115. #define ST7735_YSTART 2
  116. #define ST7735_ROTATION (ST7735_MADCTL_MX | ST7735_MADCTL_MV | ST7735_MADCTL_BGR)
  117. */
  118. // 1.44" display, upside down
  119. /*
  120. #define ST7735_IS_128X128 1
  121. #define ST7735_WIDTH 128
  122. #define ST7735_HEIGHT 128
  123. #define ST7735_XSTART 2
  124. #define ST7735_YSTART 1
  125. #define ST7735_ROTATION (ST7735_MADCTL_BGR)
  126. */
  127. // mini 160x80 display (it's unlikely you want the default orientation)
  128. /*
  129. #define ST7735_IS_160X80 1
  130. #define ST7735_XSTART 26
  131. #define ST7735_YSTART 1
  132. #define ST7735_WIDTH 80
  133. #define ST7735_HEIGHT 160
  134. #define ST7735_ROTATION (ST7735_MADCTL_MX | ST7735_MADCTL_MY | ST7735_MADCTL_BGR)
  135. */
  136. // mini 160x80, rotate left
  137. /*
  138. #define ST7735_IS_160X80 1
  139. #define ST7735_XSTART 1
  140. #define ST7735_YSTART 26
  141. #define ST7735_WIDTH 160
  142. #define ST7735_HEIGHT 80
  143. #define ST7735_ROTATION (ST7735_MADCTL_MX | ST7735_MADCTL_MV | ST7735_MADCTL_BGR)
  144. */
  145. // mini 160x80, rotate right
  146. /*
  147. #define ST7735_IS_160X80 1
  148. #define ST7735_XSTART 1
  149. #define ST7735_YSTART 26
  150. #define ST7735_WIDTH 160
  151. #define ST7735_HEIGHT 80
  152. #define ST7735_ROTATION (ST7735_MADCTL_MY | ST7735_MADCTL_MV | ST7735_MADCTL_BGR)
  153. */
  154. /****************************/
  155. #define ST7735_NOP 0x00
  156. #define ST7735_SWRESET 0x01
  157. #define ST7735_RDDID 0x04
  158. #define ST7735_RDDST 0x09
  159. #define ST7735_SLPIN 0x10
  160. #define ST7735_SLPOUT 0x11
  161. #define ST7735_PTLON 0x12
  162. #define ST7735_NORON 0x13
  163. #define ST7735_INVOFF 0x20
  164. #define ST7735_INVON 0x21
  165. #define ST7735_GAMSET 0x26
  166. #define ST7735_DISPOFF 0x28
  167. #define ST7735_DISPON 0x29
  168. #define ST7735_CASET 0x2A
  169. #define ST7735_RASET 0x2B
  170. #define ST7735_RAMWR 0x2C
  171. #define ST7735_RAMRD 0x2E
  172. #define ST7735_PTLAR 0x30
  173. #define ST7735_COLMOD 0x3A
  174. #define ST7735_MADCTL 0x36
  175. #define ST7735_FRMCTR1 0xB1
  176. #define ST7735_FRMCTR2 0xB2
  177. #define ST7735_FRMCTR3 0xB3
  178. #define ST7735_INVCTR 0xB4
  179. #define ST7735_DISSET5 0xB6
  180. #define ST7735_PWCTR1 0xC0
  181. #define ST7735_PWCTR2 0xC1
  182. #define ST7735_PWCTR3 0xC2
  183. #define ST7735_PWCTR4 0xC3
  184. #define ST7735_PWCTR5 0xC4
  185. #define ST7735_VMCTR1 0xC5
  186. #define ST7735_RDID1 0xDA
  187. #define ST7735_RDID2 0xDB
  188. #define ST7735_RDID3 0xDC
  189. #define ST7735_RDID4 0xDD
  190. #define ST7735_PWCTR6 0xFC
  191. #define ST7735_GMCTRP1 0xE0
  192. #define ST7735_GMCTRN1 0xE1
  193. // Color definitions
  194. #define ST7735_BLACK 0x0000
  195. #define ST7735_BLUE 0x001F
  196. #define ST7735_RED 0xF800
  197. #define ST7735_GREEN 0x07E0
  198. #define ST7735_CYAN 0x07FF
  199. #define ST7735_MAGENTA 0xF81F
  200. #define ST7735_YELLOW 0xFFE0
  201. #define ST7735_WHITE 0xFFFF
  202. #define ST7735_COLOR565(r, g, b) (((r & 0xF8) << 8) | ((g & 0xFC) << 3) | ((b & 0xF8) >> 3))
  203. typedef enum {
  204. GAMMA_10 = 0x01,
  205. GAMMA_25 = 0x02,
  206. GAMMA_22 = 0x04,
  207. GAMMA_18 = 0x08
  208. } GammaDef;
  209. #ifdef __cplusplus
  210. extern "C" {
  211. #endif
  212. void ST7735_Init(void);
  213. void ST7735_DrawPixel(uint16_t x, uint16_t y, uint16_t color);
  214. void ST7735_WriteString(uint16_t x, uint16_t y, const char* str, FontDef font, uint16_t color, uint16_t bgcolor);
  215. void ST7735_FillRectangle(uint16_t x, uint16_t y, uint16_t w, uint16_t h, uint16_t color);
  216. void ST7735_FillRectangleFast(uint16_t x, uint16_t y, uint16_t w, uint16_t h, uint16_t color);
  217. void ST7735_FillScreen(uint16_t color);
  218. void ST7735_FillScreenFast(uint16_t color);
  219. void ST7735_DrawImage(uint16_t x, uint16_t y, uint16_t w, uint16_t h, const uint16_t* data);
  220. void ST7735_InvertColors(bool invert);
  221. void ST7735_SetGamma(GammaDef gamma);
  222. void ST7735_Test(void);
  223. #ifdef __cplusplus
  224. }
  225. #endif
  226. #endif // __ST7735_H__