1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-11-29 10:24:12 +01:00

Fix typo in KeyboardLogout.ino

Comment says ALT+s, code says ALT+l. This remedies that difference.
This commit is contained in:
Robert Allen 2014-09-26 12:51:10 -07:00
parent cd015f4c0b
commit d3f76e9558

View File

@ -65,7 +65,7 @@ void loop() {
Keyboard.press(KEY_DELETE);
delay(100);
Keyboard.releaseAll();
//ALT-s:
//ALT-l:
delay(2000);
Keyboard.press(KEY_LEFT_ALT);
Keyboard.press('l');