display variables??? please help

Hi,
you can try to use the code like below :

  char s[20];
  int value ;
  value = analogRead(sensorPin);
  sprintf(s,"%d",value);
  Tft.drawString(s,0,160,1,CYAN);

Deray