MCUFRIEND_kbv library for MBED depends on ADA_GFX_kbv library

Dependents:   TFT_Touch_botao_v1 TFT_Touch_exemplo5_git_touch TESTE_1 TFT_Touch_exemplo6_git_touch_button_3_ ... more

Committer:
davidprentice
Date:
Fri May 14 14:45:22 2021 +0000
Revision:
3:47aa91940108
Parent:
0:6f633078852b
conditional MBED and STM32CUBEIDE

Who changed what in which revision?

UserRevisionLine numberNew contents of line
davidprentice 0:6f633078852b 1 /*
davidprentice 0:6f633078852b 2 * MCUFRIEND_kbv class inherits from Adafruit_GFX class and the Arduino Print class.
davidprentice 0:6f633078852b 3 * Any use of MCUFRIEND_kbv class and examples is dependent on Adafruit and Arduino licenses
davidprentice 0:6f633078852b 4 * The license texts are in the accompanying license.txt file
davidprentice 0:6f633078852b 5 */
davidprentice 0:6f633078852b 6
davidprentice 0:6f633078852b 7 #ifndef MCUFRIEND_KBV_H_
davidprentice 0:6f633078852b 8 #define MCUFRIEND_KBV_H_ 299
davidprentice 0:6f633078852b 9
davidprentice 0:6f633078852b 10 //#define USE_SERIAL
davidprentice 0:6f633078852b 11
davidprentice 0:6f633078852b 12 #if ARDUINO < 101
davidprentice 0:6f633078852b 13 #define USE_GFX_KBV
davidprentice 0:6f633078852b 14 #include "ADA_GFX_kbv.h"
davidprentice 0:6f633078852b 15 #else
davidprentice 0:6f633078852b 16 #include "Adafruit_GFX.h"
davidprentice 0:6f633078852b 17 #endif
davidprentice 0:6f633078852b 18
davidprentice 0:6f633078852b 19 class MCUFRIEND_kbv : public Adafruit_GFX {
davidprentice 0:6f633078852b 20
davidprentice 0:6f633078852b 21 public:
davidprentice 0:6f633078852b 22 // MCUFRIEND_kbv(int CS=A3, int RS=A2, int WR=A1, int RD=A0, int RST=A4); //shield wiring
davidprentice 0:6f633078852b 23 MCUFRIEND_kbv(int CS=0, int RS=0, int WR=0, int RD=0, int _RST=0); //dummy arguments
davidprentice 0:6f633078852b 24 void reset(void); // you only need the constructor
davidprentice 0:6f633078852b 25 void begin(uint16_t ID = 0x9341); // you only need the constructor
davidprentice 0:6f633078852b 26 virtual void drawPixel(int16_t x, int16_t y, uint16_t color); // and these three
davidprentice 0:6f633078852b 27 void WriteCmdData(uint16_t cmd, uint16_t dat); // ?public methods !!!
davidprentice 0:6f633078852b 28 void pushCommand(uint16_t cmd, uint8_t * block, int8_t N);
davidprentice 0:6f633078852b 29 uint16_t color565(uint8_t r, uint8_t g, uint8_t b) { return ((r & 0xF8) << 8) | ((g & 0xFC) << 3) | ((b & 0xF8) >> 3); }
davidprentice 0:6f633078852b 30 uint16_t readID(void);
davidprentice 0:6f633078852b 31 virtual void fillRect(int16_t x, int16_t y, int16_t w, int16_t h, uint16_t color);
davidprentice 0:6f633078852b 32 virtual void drawFastVLine(int16_t x, int16_t y, int16_t h, uint16_t color) { fillRect(x, y, 1, h, color); }
davidprentice 0:6f633078852b 33 virtual void drawFastHLine(int16_t x, int16_t y, int16_t w, uint16_t color) { fillRect(x, y, w, 1, color); }
davidprentice 0:6f633078852b 34 virtual void fillScreen(uint16_t color) { fillRect(0, 0, _width, _height, color); }
davidprentice 0:6f633078852b 35 virtual void setRotation(uint8_t r);
davidprentice 0:6f633078852b 36 virtual void invertDisplay(bool i);
davidprentice 0:6f633078852b 37
davidprentice 0:6f633078852b 38 uint16_t readReg(uint16_t reg, int8_t index=0);
davidprentice 0:6f633078852b 39 int16_t readGRAM(int16_t x, int16_t y, uint16_t *block, int16_t w, int16_t h);
davidprentice 0:6f633078852b 40 uint16_t readPixel(int16_t x, int16_t y) { uint16_t color; readGRAM(x, y, &color, 1, 1); return color; }
davidprentice 0:6f633078852b 41 void setAddrWindow(int16_t x, int16_t y, int16_t x1, int16_t y1);
davidprentice 0:6f633078852b 42 void pushColors(uint16_t *block, int16_t n, bool first);
davidprentice 0:6f633078852b 43 void pushColors(uint8_t *block, int16_t n, bool first);
davidprentice 0:6f633078852b 44 void pushColors(const uint8_t *block, int16_t n, bool first, bool bigend = false);
davidprentice 0:6f633078852b 45 void vertScroll(int16_t top, int16_t scrollines, int16_t offset);
davidprentice 0:6f633078852b 46
davidprentice 0:6f633078852b 47 protected:
davidprentice 0:6f633078852b 48 uint32_t readReg32(uint16_t reg);
davidprentice 0:6f633078852b 49 uint32_t readReg40(uint16_t reg);
davidprentice 0:6f633078852b 50 uint16_t _lcd_xor, _lcd_capable;
davidprentice 0:6f633078852b 51
davidprentice 0:6f633078852b 52 private:
davidprentice 0:6f633078852b 53 uint16_t _lcd_ID, _lcd_rev, _lcd_madctl, _lcd_drivOut, _MC, _MP, _MW, _SC, _EC, _SP, _EP;
davidprentice 0:6f633078852b 54 };
davidprentice 0:6f633078852b 55
davidprentice 0:6f633078852b 56 // New color definitions. thanks to Bodmer
davidprentice 0:6f633078852b 57 #define TFT_BLACK 0x0000 /* 0, 0, 0 */
davidprentice 0:6f633078852b 58 #define TFT_NAVY 0x000F /* 0, 0, 128 */
davidprentice 0:6f633078852b 59 #define TFT_DARKGREEN 0x03E0 /* 0, 128, 0 */
davidprentice 0:6f633078852b 60 #define TFT_DARKCYAN 0x03EF /* 0, 128, 128 */
davidprentice 0:6f633078852b 61 #define TFT_MAROON 0x7800 /* 128, 0, 0 */
davidprentice 0:6f633078852b 62 #define TFT_PURPLE 0x780F /* 128, 0, 128 */
davidprentice 0:6f633078852b 63 #define TFT_OLIVE 0x7BE0 /* 128, 128, 0 */
davidprentice 0:6f633078852b 64 #define TFT_LIGHTGREY 0xC618 /* 192, 192, 192 */
davidprentice 0:6f633078852b 65 #define TFT_DARKGREY 0x7BEF /* 128, 128, 128 */
davidprentice 0:6f633078852b 66 #define TFT_BLUE 0x001F /* 0, 0, 255 */
davidprentice 0:6f633078852b 67 #define TFT_GREEN 0x07E0 /* 0, 255, 0 */
davidprentice 0:6f633078852b 68 #define TFT_CYAN 0x07FF /* 0, 255, 255 */
davidprentice 0:6f633078852b 69 #define TFT_RED 0xF800 /* 255, 0, 0 */
davidprentice 0:6f633078852b 70 #define TFT_MAGENTA 0xF81F /* 255, 0, 255 */
davidprentice 0:6f633078852b 71 #define TFT_YELLOW 0xFFE0 /* 255, 255, 0 */
davidprentice 0:6f633078852b 72 #define TFT_WHITE 0xFFFF /* 255, 255, 255 */
davidprentice 0:6f633078852b 73 #define TFT_ORANGE 0xFDA0 /* 255, 180, 0 */
davidprentice 0:6f633078852b 74 #define TFT_GREENYELLOW 0xB7E0 /* 180, 255, 0 */
davidprentice 0:6f633078852b 75 #define TFT_PINK 0xFC9F
davidprentice 0:6f633078852b 76
davidprentice 0:6f633078852b 77 #endif
davidprentice 0:6f633078852b 78