1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
tv44led_example/tmk_core/tool/mbed/mbed-sdk/libraries/tests/usb/device/keyboard/main.cpp
di0ib 87e7029039 Upload
Initial upload
2016-07-08 09:13:28 -10:00

22 lines
448 B
C++

#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);
}
}