Please post a link to the actual screen that you have bought. e.g. Ebay sale page
UTFT "supports" certain manufacturers. If your screen was made by ColdTears (CTE) you just need to specify the correct CTE model.
If you have bought a generic screen from AliExpress, Ebay, ... we need to identify the controller.
Then we might be able to suggest a suitable UTFT model
I suggest that you run all of the UTFT examples. Make sure that your screen works 100%. Repeat with all the URTouch examples.
It is possible that there is an error in the Instructables code.
How far do you get?
void setup() {
//Initialize RTC
Serial.begin(9600);
// while (!Serial) ; // wait until Arduino Serial Monitor opens
delay(200);
setSyncProvider(RTC.get); // the function to get the time from the RTC
setSyncInterval(60); // sync the time every 60 seconds (1 minutes)
if(timeStatus()!= timeSet){
Serial.println("Unable to sync with the RTC");
RTC.set(1408278800); // set the RTC to Aug 25 2014 9:00 am
setTime(1408278800);
}
else{
Serial.println("RTC has set the system time");
}
// Setup Alarm enable pin to play back sound on the ISD1820 board
pinMode(8, OUTPUT); // D8 used to toggle sound
digitalWrite(8,LOW); // Set to low to turn off sound
// Initiate display
myGLCD.InitLCD();
myGLCD.clrScr();
myTouch.InitTouch();
myTouch.setPrecision(PREC_LOW);
drawscreen(); // Initiate the game
UpdateDisp(); // update value to clock
}
What do you see on Serial Terminal?
Add extra Serial lines to show each line as you get to it. e.g. Serial.println("myGLCD.InitLCD()");