aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/USBAPI.h
diff options
context:
space:
mode:
authorZach Eveland <zeveland@blacklabel-development.com>2011-12-20 17:09:44 -0500
committerZach Eveland <zeveland@blacklabel-development.com>2011-12-20 17:09:44 -0500
commit4e9fb924b2ea4c1373edc09408db2ac0c402e68c (patch)
treeb418eb3f288bc98db177797e382018511de804ec /cores/arduino/USBAPI.h
parente405a6eb6099a71959c664cab8ca8241634c6b91 (diff)
changed Keyboard write() method to type(). Made write() an alias for type() to allow subclassing by Stream.
Diffstat (limited to 'cores/arduino/USBAPI.h')
-rw-r--r--cores/arduino/USBAPI.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/cores/arduino/USBAPI.h b/cores/arduino/USBAPI.h
index 1772c3c..6a0b989 100644
--- a/cores/arduino/USBAPI.h
+++ b/cores/arduino/USBAPI.h
@@ -104,7 +104,8 @@ private:
void setKeyMap(KeyMap* keyMap);
public:
Keyboard_();
- virtual size_t write(uint8_t);
+ virtual size_t write(uint8_t c) {type(c);};
+ virtual size_t type(uint8_t c);
};
extern Keyboard_ Keyboard;