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

Dependencies:   mbed

Fork of LEDMatrix_Master by en 129

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers displayCom.h Source File

displayCom.h

00001 #ifndef __DISPLAYCOM_H_
00002 #define __DISPLAYCOM_H_
00003 
00004 #define DISPLAY_XSIZE   (96)
00005 #define COLOR_R 0
00006 #define COLOR_G 1
00007 #define COLOR_B 2
00008 #define COLOR_Y 3
00009 #define COLOR_M 4
00010 #define COLOR_C 5
00011 #define COLOR_W 6
00012 
00013 extern unsigned int ImageBuf[3][DISPLAY_XSIZE];
00014 
00015 #endif