Caught incorrect parsing of B value
This commit is contained in:
parent
b62bb0d18e
commit
f594ae9b34
|
@ -62,7 +62,7 @@ void colorString () {
|
||||||
|
|
||||||
strR = color.substring(0, commaR);
|
strR = color.substring(0, commaR);
|
||||||
strG = color.substring(commaR + 1, commaG);
|
strG = color.substring(commaR + 1, commaG);
|
||||||
strB = color.substring(commaG + 1, commaB);
|
strB = color.substring(commaG + 1);
|
||||||
|
|
||||||
r = strR.toInt();
|
r = strR.toInt();
|
||||||
g = strG.toInt();
|
g = strG.toInt();
|
||||||
|
|
|
@ -19,17 +19,14 @@ String color = "000,000,000,000";
|
||||||
|
|
||||||
volatile int commaR = 0;
|
volatile int commaR = 0;
|
||||||
volatile int commaG = 0;
|
volatile int commaG = 0;
|
||||||
volatile int commaB = 0;
|
|
||||||
|
|
||||||
String strR = "000";
|
String strR = "000";
|
||||||
String strG = "000";
|
String strG = "000";
|
||||||
String strB = "000";
|
String strB = "000";
|
||||||
String strA = "000"; // To the end of the string
|
|
||||||
|
|
||||||
volatile int r = 0;
|
volatile int r = 0;
|
||||||
volatile int g = 0;
|
volatile int g = 0;
|
||||||
volatile int b = 0;
|
volatile int b = 0;
|
||||||
volatile int a = 0;
|
|
||||||
|
|
||||||
volatile char cmd_char = 'z';
|
volatile char cmd_char = 'z';
|
||||||
|
|
||||||
|
@ -75,7 +72,7 @@ void colorString () {
|
||||||
|
|
||||||
strR = color.substring(0, commaR);
|
strR = color.substring(0, commaR);
|
||||||
strG = color.substring(commaR + 1, commaG);
|
strG = color.substring(commaR + 1, commaG);
|
||||||
strB = color.substring(commaG + 1, commaB);
|
strB = color.substring(commaG + 1);
|
||||||
|
|
||||||
r = strR.toInt();
|
r = strR.toInt();
|
||||||
g = strG.toInt();
|
g = strG.toInt();
|
||||||
|
|
Loading…
Reference in New Issue