We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22f7380 commit 29c29e4Copy full SHA for 29c29e4
src/Keyboard.cpp
@@ -160,7 +160,6 @@ uint8_t USBPutChar(uint8_t c);
160
size_t Keyboard_::press(uint8_t k)
161
{
162
// Press key and send report to host
163
- uint8_t i;
164
auto ret = set((KeyboardKeycode)k, true);
165
if(ret){
166
sendReport(&_keyReport);
@@ -174,7 +173,6 @@ size_t Keyboard_::press(uint8_t k)
174
173
// it shouldn't be repeated any more.
175
size_t Keyboard_::release(uint8_t k)
176
177
178
auto ret = set((KeyboardKeycode)k, false);
179
180
0 commit comments