Merge pull request #388 from keyboardio/h/cpplint-happy

Model01-TestMode: Make cpplint happy
pull/426/head
Jesse Vincent 6 years ago committed by GitHub
commit 4968bbe40c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -107,14 +107,11 @@ void TestMode::handleKeyEvent(side_data_t *side, keydata_t *oldState, keydata_t
// If the key is held down
if (keyState == HELD) {
KeyboardHardware.setCrgbAt(row, col_offset - col, green);
}
} else if (bitRead(side->badKeys, keynum) == 1) {
// If we triggered chatter detection ever on this key
else if (bitRead(side->badKeys, keynum) == 1) {
KeyboardHardware.setCrgbAt(row, col_offset - col, red);
}
} else if (keyState == TOGGLED_OFF) {
// If the key was just released
else if (keyState == TOGGLED_OFF) {
KeyboardHardware.setCrgbAt(row, col_offset - col, blue);
}
}

@ -32,7 +32,7 @@ class TestMode : public kaleidoscope::Plugin {
} side_data_t;
TestMode(void) {};
TestMode(void) {}
EventHandlerResult beforeReportingState();

Loading…
Cancel
Save