Fix white color
This commit is contained in:
parent
52be705ecd
commit
a6c3cbb688
|
@ -66,7 +66,7 @@ void loop() {
|
|||
always_on = (digitalRead(BUTTON_CAP_TOGGLE) == HIGH); // Toggle button pressed == ALWAYS ON
|
||||
|
||||
// NeoPixel related
|
||||
neopix.setPixelColor(0, neopix.Color(0, 0, 0)); // White
|
||||
neopix.setPixelColor(0, neopix.Color(255, 255, 255)); // White
|
||||
neopix.setPixelColor(1, neopix.Color(0, 255, 0)); // Green
|
||||
neopix.show();
|
||||
|
||||
|
|
Reference in a new issue