LPC1768 programm for the led matrix.

Dependencies:   BufferedSerial DS3231 mbed-rtos mbed

main.cpp

Committer:
JOEV
Date:
2018-01-17
Revision:
3:bd1352d4dbb8
Parent:
2:d5472e4a55bf

File content as of revision 3:bd1352d4dbb8:

#include "initalize.h"
#include "mbed.h"
#include <string>
//------------------------------------------------------------------------------------------------------
// editable Variables/Text
//------------------------------------------------------------------------------------------------------
int m_length =     64;       // length of the matrix
int m_height =     8;        // height of the matrix
char matrix_value  [512];    // How many Variables can be declared in the text-array


//------------------------------------------------------------------------------------------------------
// Main
//------------------------------------------------------------------------------------------------------
int main()
{
    while(1)
    {
        Matrix(m_length,m_height,matrix_value);
    }
    
}