ggez

Committer:
bankzamak
Date:
Sat Oct 22 07:08:42 2016 +0000
Revision:
0:b9ff8fc37c0e
RMUMPU9250 FIBO naja

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bankzamak 0:b9ff8fc37c0e 1
bankzamak 0:b9ff8fc37c0e 2 #ifndef my8x8RGB_H
bankzamak 0:b9ff8fc37c0e 3 #define my8x8RGB_H
bankzamak 0:b9ff8fc37c0e 4
bankzamak 0:b9ff8fc37c0e 5
bankzamak 0:b9ff8fc37c0e 6 void INITRGB(char in[3]); //whitebalance define
bankzamak 0:b9ff8fc37c0e 7 void color_choose(int oasis[8][8][4]);
bankzamak 0:b9ff8fc37c0e 8 void Showscreen(); //display
bankzamak 0:b9ff8fc37c0e 9 void screen_color(uint8_t R,uint8_t G,uint8_t B); // all dot on screen
bankzamak 0:b9ff8fc37c0e 10 void screen_off();//all led brightness=0
bankzamak 0:b9ff8fc37c0e 11 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);
bankzamak 0:b9ff8fc37c0e 12 void rgb_point(uint8_t Colum,uint8_t Row,uint8_t R,uint8_t G,uint8_t B); // 16m_colorful *yellow,purple,pink. etc.
bankzamak 0:b9ff8fc37c0e 13 #endif // my8x8RGB_H
bankzamak 0:b9ff8fc37c0e 14