Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: USBDevice ResonseBox mbed
Fork of USBKeyboard_HelloWorld by
main.cpp@3:8b56768ceca2, 2011-11-16 (annotated)
- Committer:
- samux
- Date:
- Wed Nov 16 07:56:22 2011 +0000
- Revision:
- 3:8b56768ceca2
- Parent:
- 2:24dad6de0713
- Child:
- 4:f0df6aae7147
Who changed what in which revision?
| User | Revision | Line number | New contents of line | 
|---|---|---|---|
| samux | 1:291a88a2c151 | 1 | #include "mbed.h" | 
| samux | 1:291a88a2c151 | 2 | #include "USBKeyboard.h" | 
| samux | 1:291a88a2c151 | 3 | |
| samux | 1:291a88a2c151 | 4 | //LED1: NUM_LOCK | 
| samux | 1:291a88a2c151 | 5 | //LED2: CAPS_LOCK | 
| samux | 1:291a88a2c151 | 6 | //LED3: SCROLL_LOCK | 
| samux | 1:291a88a2c151 | 7 | BusOut leds(LED1, LED2, LED3); | 
| samux | 1:291a88a2c151 | 8 | |
| samux | 3:8b56768ceca2 | 9 | //USBKeyboard | 
| samux | 3:8b56768ceca2 | 10 | USBKeyboard keyboard; | 
| samux | 1:291a88a2c151 | 11 | |
| samux | 1:291a88a2c151 | 12 | int main(void) { | 
| samux | 1:291a88a2c151 | 13 | while (1) { | 
| samux | 1:291a88a2c151 | 14 | keyboard.mediaControl(KEY_VOLUME_DOWN); | 
| samux | 1:291a88a2c151 | 15 | keyboard.printf("Hello World from Mbed\r\n"); | 
| samux | 1:291a88a2c151 | 16 | keyboard.keyCode('s', KEY_CTRL); | 
| samux | 1:291a88a2c151 | 17 | keyboard.keyCode(KEY_CAPS_LOCK); | 
| samux | 3:8b56768ceca2 | 18 | leds = keyboard.lockStatus(); | 
| samux | 1:291a88a2c151 | 19 | wait(1); | 
| samux | 1:291a88a2c151 | 20 | } | 
| samux | 2:24dad6de0713 | 21 | } | 
