Hello, I have a USB barcode scanner from Honeywell Model Xenon 1900.
954.341016usb 1-1: new full-speed USB device number 4 using xhci-hcd 954.496151usb 1-1: New USB device found, idVendor=0c2e, idProduct=0901, bcdDevice= 9.62 954.496167 usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=8 954.496176 usb 1-1: Product: 1900 954.496185 usb 1-1: Manufacturer: Honeywell Imaging & Mobility 954.496194 usb 1-1: SerialNumber: 19151B0285 954.538933 input: Honeywell Imaging & Mobility 1900 as /devices/platform/amba/ff9d0000.usb0/fe200000.dwc3/xhci-hcd.0.auto/usb1/1-1/1-1:1.0/0003:0C2E:0901.0003/input/input4 954.597871 hid-generic 0003:0C2E:0901.0003: input,hidraw0: USB HID v1.10 Keyboard [Honeywell Imaging & Mobility 1900] on usb-xhci-hcd.0.auto-1/input0 954.604292 hid-generic 0003:0C2E:0901.0004: hidraw1: USB HID v1.10 Device [Honeywell Imaging & Mobility 1900] on usb-xhci-hcd.0.auto-1/input1
How can I make this work with 3.5.SP16 Patch 4 on Windows or on the ifm CR controller. Can someone please point me in the right direction.
Using this Project as a start I was able to figure this out. https://forge.codesys.com/forge/talk/Runtime/thread/04361f89ec/?limit=25&page=1#d08c
The above project only supported numbers. The updated project now supports complete ascii strings. Using a union of string(1) and a byte it was easy to convert a decimal into an ascii character. Please let me know if their are any questions
Log in to post a comment.
Hello, I have a USB barcode scanner from Honeywell Model Xenon 1900.
954.341016usb 1-1: new full-speed USB device number 4 using xhci-hcd
954.496151usb 1-1: New USB device found, idVendor=0c2e, idProduct=0901, bcdDevice= 9.62
954.496167 usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=8
954.496176 usb 1-1: Product: 1900
954.496185 usb 1-1: Manufacturer: Honeywell Imaging & Mobility
954.496194 usb 1-1: SerialNumber: 19151B0285
954.538933 input: Honeywell Imaging & Mobility 1900 as /devices/platform/amba/ff9d0000.usb0/fe200000.dwc3/xhci-hcd.0.auto/usb1/1-1/1-1:1.0/0003:0C2E:0901.0003/input/input4
954.597871 hid-generic 0003:0C2E:0901.0003: input,hidraw0: USB HID v1.10 Keyboard [Honeywell Imaging & Mobility 1900] on usb-xhci-hcd.0.auto-1/input0
954.604292 hid-generic 0003:0C2E:0901.0004: hidraw1: USB HID v1.10 Device [Honeywell Imaging & Mobility 1900] on usb-xhci-hcd.0.auto-1/input1
How can I make this work with 3.5.SP16 Patch 4 on Windows or on the ifm CR controller. Can someone please point me in the right direction.
Using this Project as a start I was able to figure this out.
https://forge.codesys.com/forge/talk/Runtime/thread/04361f89ec/?limit=25&page=1#d08c
The above project only supported numbers. The updated project now supports complete ascii strings. Using a union of string(1) and a byte it was easy to convert a decimal into an ascii character. Please let me know if their are any questions