LPC1768 programm for the led matrix.

Dependencies:   BufferedSerial DS3231 mbed-rtos mbed

initalize.h

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

File content as of revision 2:d5472e4a55bf:

#ifndef INITALIZE_H
#define INITALIZE_H

#include <string>
#include "mbed.h"
//------------------------------------------------------------------------------------------------------
/*
  ___             _   _             
 | __|  _ _ _  __| |_(_)___ _ _  ___
 | _| || | ' \/ _|  _| / _ \ ' \(_-<
 |_| \_,_|_||_\__|\__|_\___/_||_/__/
                                    
*/


void shift_srg(); 
void reset_srg(); 
void setSpeed();
void init();
void initArray(int const *letter, int size);
void setText(const string& text_dummy, int *matrix_text);
void setMatrix(int m_height,int m_length, int *matrix_text);


void Matrix(int m_length, int m_height, int *matrix_text,const string text_generic);
#endif