summaryrefslogtreecommitdiff
path: root/tmk_core/tool/mbed/mbed-sdk/libraries/tests/usb/device/keyboard/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/tool/mbed/mbed-sdk/libraries/tests/usb/device/keyboard/main.cpp')
-rw-r--r--tmk_core/tool/mbed/mbed-sdk/libraries/tests/usb/device/keyboard/main.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/tmk_core/tool/mbed/mbed-sdk/libraries/tests/usb/device/keyboard/main.cpp b/tmk_core/tool/mbed/mbed-sdk/libraries/tests/usb/device/keyboard/main.cpp
new file mode 100644
index 0000000000..3c4cbf15a1
--- /dev/null
+++ b/tmk_core/tool/mbed/mbed-sdk/libraries/tests/usb/device/keyboard/main.cpp
@@ -0,0 +1,21 @@
+#include "mbed.h"
+#include "USBKeyboard.h"
+
+//LED1: NUM_LOCK
+//LED2: CAPS_LOCK
+//LED3: SCROLL_LOCK
+BusOut leds(LED1, LED2, LED3);
+
+//USBKeyboard
+USBKeyboard keyboard;
+
+int main(void) {
+ while (1) {
+ keyboard.mediaControl(KEY_VOLUME_DOWN);
+ keyboard.printf("Hello World from Mbed\r\n");
+ keyboard.keyCode('s', KEY_CTRL);
+ keyboard.keyCode(KEY_CAPS_LOCK);
+ leds = keyboard.lockStatus();
+ wait(1);
+ }
+}