When I run the following code snippet, i get this warning. Should I be afraid of it if I want to use images in the future? Nothing changes when I include <SD.h>.
#include <TFT.h>
#include <SPI.h>
#include <Esplora.h>
void setup(){
EsploraTFT.begin();
EsploraTFT.background(0,0,0);
delay(1000);
}
void loop(){
EsploraTFT.stroke(255,255,255);
EsploraTFT.fill(255,255,255);
EsploraTFT.setTextSize(3);
EsploraTFT.text("ashfahdsfkjahsdkfjhalkds", 0, 0);
}