mirror of
https://github.com/option8/RetroConnector.git
synced 2025-01-16 17:31:51 +00:00
rolled back capslock code.
This commit is contained in:
parent
065096d809
commit
b77765a6c3
@ -157,17 +157,7 @@ void loop()
|
|||||||
{
|
{
|
||||||
//probably should be on an interrupt, to catch high->low transition
|
//probably should be on an interrupt, to catch high->low transition
|
||||||
|
|
||||||
CAPSState = digitalRead(CAPSPin);
|
// Only do something if the pin is different from previous state.
|
||||||
if ((int(keyboard_leds) & 2) == CAPSState) {
|
|
||||||
if (CAPSState == HIGH) {
|
|
||||||
Keyboard.set_key6(KEY_CAPS_UNLOCK);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
Keyboard.set_key6(KEY_CAPS_LOCK);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* // Only do something if the pin is different from previous state.
|
|
||||||
if ( (CAPSState!=digitalRead(CAPSPin)) && !resetCapsLock) {
|
if ( (CAPSState!=digitalRead(CAPSPin)) && !resetCapsLock) {
|
||||||
CAPSState = digitalRead(CAPSPin); // Remember new CAPSState.
|
CAPSState = digitalRead(CAPSPin); // Remember new CAPSState.
|
||||||
Keyboard.set_key6(KEY_CAPS_LOCK); // Send KEY_CAPS_LOCK.
|
Keyboard.set_key6(KEY_CAPS_LOCK); // Send KEY_CAPS_LOCK.
|
||||||
@ -177,7 +167,7 @@ void loop()
|
|||||||
if ( resetCapsLock && (millis()-dTime) > 10) {
|
if ( resetCapsLock && (millis()-dTime) > 10) {
|
||||||
Keyboard.set_key6(KEY_CAPS_UNLOCK);
|
Keyboard.set_key6(KEY_CAPS_UNLOCK);
|
||||||
resetCapsLock = false;
|
resetCapsLock = false;
|
||||||
} */
|
}
|
||||||
|
|
||||||
/*char CAPSState = digitalRead(CAPSPin);
|
/*char CAPSState = digitalRead(CAPSPin);
|
||||||
if (CAPSState == LOW) {
|
if (CAPSState == LOW) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user