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

text.h

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

File content as of revision 2:3cc1e2dec7a2:

#ifndef MBED_TEXT_H
#define MBED_TEXT_H

#include "mbed.h"
#include <string>

class text {
private:
    int stringLength, length, letSize;
    int temp[8][8];
public: 
    text();
    void generate(string input);
    void letters(char take);
    void tempCheck();
    void calcLength(string input);
};

#endif