----------------------------------------------------------
| 215 | } |
| 216 | // ---------------------------------------------------------- |
| 217 | Arduino_ST7789::Arduino_ST7789(int8_t dc, int8_t rst, int8_t cs) : Adafruit_GFX(ST7789_TFTWIDTH, ST7789_TFTHEIGHT) |
| 218 | { |
| 219 | csPin = cs; |
| 220 | dcPin = dc; |
| 221 | rstPin = rst; |
| 222 | } |
| 223 | |
| 224 | // ---------------------------------------------------------- |
| 225 | void Arduino_ST7789::init(uint16_t width, uint16_t height) |
nothing calls this directly
no outgoing calls
no test coverage detected