Working on general setpage rendering 15:00 wed

Dependencies:   mbed

Revision:
2:cfa689f0ef30
Parent:
1:1169d3c7571e
--- a/main.cpp	Wed May 24 14:15:24 2017 +0000
+++ b/main.cpp	Wed May 24 14:31:30 2017 +0000
@@ -57,11 +57,22 @@
     TFT.set_font((unsigned char*) Arial28x28); //set time hour
     TFT.locate(50,130);
     TFT.printf("Time_Hour");
-
+    
     //set time mins
     TFT.locate(230,130);
     TFT.printf("Alarm_Min");
 
+    TFT.set_font((unsigned char*) Arial12x12);//set date day
+    TFT.locate(50,200);
+    TFT.printf("day");
+
+    //set date month
+    TFT.locate(120,200);
+    TFT.printf("month");
+
+    //set date year
+    TFT.locate(190,200);
+    TFT.printf("year");
 
     
 }