Blue LED matrix (8x16) program. Gets text string through bluetooth and displays it on led matrix. Also has a clock function- get system time from a phone through bluetooth and enters clock mode. In clock mode it acts as a clock showing hours and minutes and blinking led every second. Clock mode can be broken if a text string is received through bluetooth.

Dependencies:   mbed

Revision:
2:3cc1e2dec7a2
Parent:
1:13c8ce9188f1
Child:
3:35a47548d29d
--- a/main.cpp	Mon Jun 23 22:06:26 2014 +0000
+++ b/main.cpp	Wed Jun 25 16:24:03 2014 +0000
@@ -1,6 +1,12 @@
 #include "mbed.h"
 #include "matrix.h"
+#include "text.h"
+
+text generator;
+
 
 int main() {
-    matrix("WELCOME!");
+    generator.generate("LABAS KUGELI SU UOGIENE");
+    
+    //matrix("WELCOME!");
 }
\ No newline at end of file