Update PS2_To_AppleII.ino

This commit is contained in:
JoaoPagotto 2019-11-06 15:15:52 -03:00 committed by GitHub
parent 75685b9ab6
commit 0c765cb3f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -91,7 +91,9 @@ void setup()
keyboard.begin(PS2_DATA, PS2_IRQ); // Setup keyboard pins
keyboard.setNoBreak(1); // No break codes for keys (when key released)
keyboard.setNoRepeat(1); // Don't repeat shift ctrl etc
keyboard.setNoRepeat(1); // Don't repeat shift ctrl etc
keyboard.setLock(PS2_LOCK_NUM); // Sets the current status of Locks and LEDs
}
//-----------------------------------------------------------------------------