This commit is contained in:
MAXIM HUNT 2018-09-30 17:09:17 +01:00
parent 0714cf5252
commit 484fd53818

View File

@ -37,13 +37,16 @@ void fmf2() {setAll(255, 0, 255);show();}
void fmf3() {
switch (currentRGB) {
case 'i':
setQ(255, 0, 63);setW(255, 246, 0);setA(0, 128, 0);setS(255, 0, 63);show();currentRGB = "r";
setQ(255, 0, 63);setW(255, 246, 0);setA(0, 128, 0);setS(255, 0, 63);show();currentRGB = 'r';
break;
case 'o':
setAll(0, 0, 255);show();currentRGB = "i";
setAll(0, 0, 255);show();currentRGB = 'i';
break;
/* case 'r':
setAll(0, 0, 0);show();currentRGB = "o";
break;*/
default:
setAll(0, 0, 0);show();currentRGB = "o";
setAll(0, 0, 0);show();currentRGB = 'o';
break;
}
}