RGB 8*8 By Oey

Dependents:   B17_ClockGame

Committer:
mmoodevil
Date:
Mon Dec 07 11:24:40 2015 +0000
Revision:
0:c01d67879eb2
SSSSS

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mmoodevil 0:c01d67879eb2 1
mmoodevil 0:c01d67879eb2 2 #ifndef my8x8RGB_H
mmoodevil 0:c01d67879eb2 3 #define my8x8RGB_H
mmoodevil 0:c01d67879eb2 4
mmoodevil 0:c01d67879eb2 5
mmoodevil 0:c01d67879eb2 6 void INITRGB(char in[3]); //whitebalance define
mmoodevil 0:c01d67879eb2 7
mmoodevil 0:c01d67879eb2 8 void displayRGB(); //display
mmoodevil 0:c01d67879eb2 9
mmoodevil 0:c01d67879eb2 10 void screen_color(uint8_t R,uint8_t G,uint8_t B); // all dot on screen
mmoodevil 0:c01d67879eb2 11 void screen_off();//all led brightness=0
mmoodevil 0:c01d67879eb2 12 void RGB_led(uint8_t Colum,uint8_t Row,char color,uint8_t brightness); ////on LED each point | color = 'R','G','B' | **brightness 0-255 => rgb_point(1,1,'R ',255);
mmoodevil 0:c01d67879eb2 13 void rgb_point(uint8_t Colum,uint8_t Row,uint8_t R,uint8_t G,uint8_t B); // 16m_colorful *yellow,purple,pink. etc.
mmoodevil 0:c01d67879eb2 14 #endif // my8x8RGB_H