LPC1768 programm for the led matrix.

Dependencies:   BufferedSerial DS3231 mbed-rtos mbed

main.cpp

Committer:
JOEV
Date:
2016-10-12
Revision:
2:d5472e4a55bf
Parent:
1:3a39b1439456
Child:
3:bd1352d4dbb8

File content as of revision 2:d5472e4a55bf:

#include "initalize.h"
#include "mbed.h"
#include <string>
//------------------------------------------------------------------------------------------------------
// editable Variables/Text
//------------------------------------------------------------------------------------------------------
string text_generic       ("Hello World");  // is going to be used for the 'not-connected' state.
int m_length =              16;                      // length of the matrix
int m_height =              8;                      // height of the matrix
int matrix_text            [500];                   // How many Variables can be declared in the text-array
//------------------------------------------------------------------------------------------------------
// Main
//------------------------------------------------------------------------------------------------------
int main()
{
    Matrix(m_length,m_height,matrix_text,text_generic);
}