My company is trying to use Socket Mobile bluetooth scanner to scan the labels on product. I need to integrate this scanner with-in my iPad app so that when user scans a label , then scanned value comes to user's app and that value can be used for further processing.
Can someone help me in this that how can I integrate Socket Mobiles CHS with my iOS code? Company wants to decide for scanner to use or no.
You have two options HID and SDK
HID (aka quick and dirty)
Put your scanner in HID mode and it will behave like a bluetooth keyboard.
Pros
Cons
In HID mode, the scanner "types" data under the cursor. This means data can be scanned into the wrong field and the text input must be editable, so the user can modify the scanned value. You can configure the scanner to append a tab or return character to the scanned data.
HID mode is great for proof-of-concept type applications and is the only option for browser based applications at the moment.
SDK (aka doing it right)
Personally, I've never developed an iOS application using the SDK, so the best I can do is refer you to this create an iOS barcode scanner application video on youtube.
Pros
Total control over scanned data
Cons
Full disclosure: I am a consultant to Socket Mobile, Inc.