1
0

Merge pull request #47 from danbernier/alpha-square-color

Use CRGB type for AlphaSquare color, so ints are in common order
This commit is contained in:
Jesse Vincent 2018-03-08 18:49:26 -08:00 committed by GitHub
commit af407cb51a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -349,7 +349,7 @@ void setup() {
NumPad.numPadLayer = NUMPAD;
// We configure the AlphaSquare effect to use RED letters
AlphaSquare.color = { 255, 0, 0 };
AlphaSquare.color = CRGB(255, 0, 0);
// We set the brightness of the rainbow effects to 150 (on a scale of 0-255)
// This draws more than 500mA, but looks much nicer than a dimmer effect