What is the problem in this issue i cant understand codding, wrong connection or hardware problem?
Thanks for support
My code is below;
#include <TFT.h>
#include <SPI.h>
#define CSÂ 7
#define DCÂ 0
#define RESETÂ 1Â
TFT myScreen = TFT(CS, DC, RESET);
void setup(){
  myScreen.begin();
  myScreen.background(0,0,0);
}
void loop(){
 delay(1000);
 myScreen.background(255, 0, 0);
 delay(1000);
 myScreen.background(0, 255, 0);
  delay(1000);
 myScreen.background(0, 0, 255);
 Â
}