LEDMatrixDisplay Program 文字ごとに色を変更できるように修正

Dependencies:   mbed

Fork of LEDMatrix_Master by en 129

displayCom.h

Committer:
nameless129
Date:
2014-03-28
Revision:
10:e261964e4989
Parent:
4:70a1803901d1

File content as of revision 10:e261964e4989:

#ifndef __DISPLAYCOM_H_
#define __DISPLAYCOM_H_

#define DISPLAY_XSIZE   (96)
#define COLOR_R 0
#define COLOR_G 1
#define COLOR_B 2
#define COLOR_Y 3
#define COLOR_M 4
#define COLOR_C 5
#define COLOR_W 6

extern unsigned int ImageBuf[3][DISPLAY_XSIZE];

#endif