1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-16 11:21:18 +03: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); Keyboard.press(KEY_DELETE);
delay(100); delay(100);
Keyboard.releaseAll(); Keyboard.releaseAll();
//ALT-s: //ALT-l:
delay(2000); delay(2000);
Keyboard.press(KEY_LEFT_ALT); Keyboard.press(KEY_LEFT_ALT);
Keyboard.press('l'); Keyboard.press('l');