pull/365/head
Jesse Vincent 6 years ago
parent aee55ba437
commit 3a2683b3ee

@ -55,11 +55,11 @@ void TestMode_::set_leds(cRGB color) {
} }
void TestMode_::test_leds(void) { void TestMode_::test_leds(void) {
cRGB red = CRGB(201,0,0); cRGB red = CRGB(201, 0, 0);
cRGB blue = CRGB(0,0,201); cRGB blue = CRGB(0, 0, 201);
cRGB green = CRGB(0,201,0); cRGB green = CRGB(0, 201, 0);
cRGB white = CRGB(50,50,50); cRGB white = CRGB(50, 50, 50);
cRGB brightWhite = CRGB(160,160,160); cRGB brightWhite = CRGB(160, 160, 160);
// make all the LEDs bright red // make all the LEDs bright red
set_leds(red); set_leds(red);
@ -81,9 +81,9 @@ void TestMode_::test_leds(void) {
void TestMode_::handleKeyEvent(side_data_t *side, keydata_t *oldState, keydata_t *newState, uint8_t row, uint8_t col, uint8_t col_offset) { void TestMode_::handleKeyEvent(side_data_t *side, keydata_t *oldState, keydata_t *newState, uint8_t row, uint8_t col, uint8_t col_offset) {
cRGB red = CRGB(201,0,0); cRGB red = CRGB(201, 0, 0);
cRGB blue = CRGB(0,0,201); cRGB blue = CRGB(0, 0, 201);
cRGB green = CRGB(0,201,0); cRGB green = CRGB(0, 201, 0);
uint8_t keynum = (row * 8) + (col); uint8_t keynum = (row * 8) + (col);

Loading…
Cancel
Save