gen maxx

Dependencies:   mbed

Revision:
0:5ee238da834b
Child:
1:7fcd3c79c65f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Sat Dec 20 07:53:45 2014 +0000
@@ -0,0 +1,15 @@
+#include "mbed.h"
+
+
+
+int main()
+{
+    int hours = 0x12;
+    int scnds = 0x23;
+    char tmp[2] ; 
+    tmp[0] = (char)hours;
+    tmp[1] = '\0';
+    for(int i=0;i<20;i++){
+    printf("%s \n",tmp);}
+    return 0;
+}