Skip to content

Commit

Permalink
Update keyboard.ino
Browse files Browse the repository at this point in the history
  • Loading branch information
Electroner authored May 21, 2021
1 parent 7d8b264 commit 47d63c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keyboard.ino
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ void loop()
SwitchEstadoAntiguo[k][i] = SwitchEstado[k][i];
Keyboard.press(TeclasTeclado[k][i]);
}
else if (!SwitchEstado[i] && SwitchEstadoAntiguo[i] && (millis() - Debounce[k][i]) > TiempoDebounce)
else if (!SwitchEstado[k][i] && SwitchEstadoAntiguo[k][i] && (millis() - Debounce[k][i]) > TiempoDebounce)
{
Debounce[k][i] = millis();
SwitchEstadoAntiguo[k][i] = SwitchEstado[k][i];
Expand Down

0 comments on commit 47d63c9

Please sign in to comment.