Trying to load a bitmap into my TFT, I get a compilation error: drawBitmap not found...
Relevant code is below
#include <Adafruit_GFX.h> // Core graphics library
#include <Adafruit_ST7735.h> // Hardware-specific library for ST7735
#include <SPI.h>
#include "logo_xxx.c"
#define TFT_CS 10
#define TFT_RST 9
#define TFT_DC 8
Adafruit_ST7735 tft = Adafruit_ST7735(TFT_CS, TFT_DC, TFT_RST);
.....
tft.drawBitmap(0, 0, &logo_xxx, 160, 62, Display_Text_Color);