LPC1768 programm for the led matrix.

Dependencies:   BufferedSerial DS3231 mbed-rtos mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "initalize.h"
00002 #include "mbed.h"
00003 #include <string>
00004 //------------------------------------------------------------------------------------------------------
00005 // editable Variables/Text
00006 //------------------------------------------------------------------------------------------------------
00007 int m_length =     64;       // length of the matrix
00008 int m_height =     8;        // height of the matrix
00009 char matrix_value  [512];    // How many Variables can be declared in the text-array
00010 
00011 
00012 //------------------------------------------------------------------------------------------------------
00013 // Main
00014 //------------------------------------------------------------------------------------------------------
00015 int main()
00016 {
00017     while(1)
00018     {
00019         Matrix(m_length,m_height,matrix_value);
00020     }
00021     
00022 }
00023