aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino
diff options
context:
space:
mode:
authorZach Eveland <zeveland@blacklabel-development.com>2012-03-28 18:35:26 -0400
committerZach Eveland <zeveland@blacklabel-development.com>2012-03-28 18:35:26 -0400
commitd3eabc9c015dc02b6044b491cd04dde66d40a0ac (patch)
tree4fc3f96b7a9dd83dcaa7f88bf824dce3efd1ec8e /cores/arduino
parent58c36f76d51d1fe4859140acf5c9c056b4204da5 (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/arduino')
-rw-r--r--cores/arduino/HID.cpp3
-rw-r--r--cores/arduino/USBAPI.h3
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);