I have the following setup:
- Bluetooth scanner
- iPad
- Webpage with a textfield for scan input
Usage:
- User focus textfield and scan barcode with bluetooth scanner
- Scanner adds ENTER (13) at the end of the scan
Problem:
On Safari in IOS7 there seems to be a change on how keyboard events are handled on bluetooth devices. The code ...
window.onkeyup = function (e) {
console.log(e.KeyboardEvent)
}
... should return information about the key pressed. Instead i get ...
keyCode: 0
keyIdentifier: "Unidentified"
... no matter which key I press.
Same result booth form bluetooth scanner and bluetooth keyboard.
Thanks / E