diff options
Diffstat (limited to 'cores/arduino/HID.cpp')
| -rw-r--r-- | cores/arduino/HID.cpp | 3 | 
1 files changed, 1 insertions, 2 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 | 
