arduino-libraries / USBHost

USB Host Library for Arduino
http://arduino.cc/
117 stars 94 forks source link

Add ASCII control codes #5

Open bbx10 opened 8 years ago

bbx10 commented 8 years ago

KeyboardReportParser::OemToAscii does not return ASCII control codes such as CTRL-A (0x01). It also does not return ASCII codes for the following keys: TAB, ESCAPE, and DELETE. It returns the wrong code for the ENTER key.

The proposed patch to has been submitted: https://github.com/arduino-libraries/USBHost/pull/4

bbx10 commented 8 years ago

Closed PR #4 to add fixes from @dewhisna. The latest patch is PR #7.