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

Committer:
DaniusKalv
Date:
Mon Apr 07 18:41:42 2014 +0000
Revision:
0:06ac39308380
Child:
3:35a47548d29d
ko

Who changed what in which revision?

UserRevisionLine numberNew contents of line
DaniusKalv 0:06ac39308380 1 #include <string>
DaniusKalv 0:06ac39308380 2 #ifndef MATRIX_H_
DaniusKalv 0:06ac39308380 3 #define MATRIX_H_
DaniusKalv 0:06ac39308380 4
DaniusKalv 0:06ac39308380 5 void matrix(string get);
DaniusKalv 0:06ac39308380 6
DaniusKalv 0:06ac39308380 7 #endif /* matrix_H_ */