diff options
author | Zach Eveland <zeveland@blacklabel-development.com> | 2012-03-28 18:35:26 -0400 |
---|---|---|
committer | Zach Eveland <zeveland@blacklabel-development.com> | 2012-03-28 18:35:26 -0400 |
commit | d3eabc9c015dc02b6044b491cd04dde66d40a0ac (patch) | |
tree | 4fc3f96b7a9dd83dcaa7f88bf824dce3efd1ec8e /cores | |
parent | 58c36f76d51d1fe4859140acf5c9c056b4204da5 (diff) |
eliminated Keyboard.type() - unnecessary duplication of Keyboard.write() (David Mellis). Also edit KeyboardReprogram example which was the only example using type()
Diffstat (limited to 'cores')
-rw-r--r-- | cores/arduino/HID.cpp | 3 | ||||
-rw-r--r-- | cores/arduino/USBAPI.h | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/cores/arduino/HID.cpp b/cores/arduino/HID.cpp index b556223..dfcbd9d 100644 --- a/cores/arduino/HID.cpp +++ b/cores/arduino/HID.cpp @@ -591,8 +591,7 @@ void Keyboard_::releaseAll(void) sendReport(&_keyReport); } -// type() does a press and release of the specified key. -size_t Keyboard_::type(uint8_t c) +size_t Keyboard_::write(uint8_t c) { uint8_t p = press(c); // Keydown uint8_t r = release(c); // Keyup diff --git a/cores/arduino/USBAPI.h b/cores/arduino/USBAPI.h index e83089a..ee35af9 100644 --- a/cores/arduino/USBAPI.h +++ b/cores/arduino/USBAPI.h @@ -126,8 +126,7 @@ public: Keyboard_(void); void begin(void); void end(void); - virtual size_t write(uint8_t k) {return type(k);}; - virtual size_t type(uint8_t k); + virtual size_t write(uint8_t k); virtual size_t press(uint8_t k); virtual size_t release(uint8_t k); |