Ok, so I have asked this before, except I know the answer, at least, I thought I did.
So here's my code.
#include <TFT.h> // Hardware-specific library
#include <SPI.h>
#include <Esplora.h>
void setup(){
EsploraTFT.begin();
EsploraTFT.background(0,0,0); // clear the screen
EsploraTFT.stroke(255,0,255);
// static text
EsploraTFT.text("RetroMod",0,0);
EsploraTFT.text("Mobile",0,30);
// increase font size for text in loop()
EsploraTFT.setTextSize(3);
delay(1000);
void loop();
}
Now I'm trying to get it to display a menu screen style thing, and while I'm still probably doing this wrong anyways, it gives me the error "undefined reference to Loop". Now the last time I asked this question, the answer turned out to be that I needed a void loop. So i put one at the bottom. However it's still giving me the same error.