alehaa / crutils

Tools and API to communicate with barcode readers
GNU Lesser General Public License v3.0
3 stars 0 forks source link

Driver lxinput supports nummeric barcodes only #2

Open alehaa opened 10 years ago

alehaa commented 10 years ago

Actually there is no support for alphanumeric codes, but only numeric codes like GTIN or UPC.

Codes that should be supported:

alehaa commented 10 years ago

The bug is in the key-event to char translation function keytoc: Only numeric values will be recognized.

To support all characters, that are available, there should be used a keymap-file to map any key in combination with other pressed keys (e.g. shift) to the corresponding character. (e.g. KEY_A + KEY_LSHIFT = 'A')