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

main.cpp

Committer:
DaniusKalv
Date:
2014-06-25
Revision:
3:35a47548d29d
Parent:
2:3cc1e2dec7a2
Child:
4:de56a118e704

File content as of revision 3:35a47548d29d:

#include "mbed.h"
#include "matrix.h"
#include "text.h"
#include "rtos.h"

text generator;
matrix display(p13, p12, p11, p14, p15, p17, p16);

int main() {
    generator.generate("LABAS LAURYNUK!");
    while(true){
        display.show();
    }
    //matrix("WELCOME!");
}