st7735.h 6.6 KB

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