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.
USBKeyboardMouse/USBKeyboard.cpp
- Committer:
- zackc
- Date:
- 2011-01-18
- Revision:
- 0:86603687efec
File content as of revision 0:86603687efec:
#include "USBKeyboard.h"
USBKeyboard::USBKeyboard() {
// _buttons = 0;
}
void USBKeyboard::sendKeys(char *szString) {
keyboard(szString);
}
void USBKeyboard::sendKey(char c) {
keyboard(c);
}