Asya Troyan
Asya Troyan

Reputation: 15

Unable to use SDK for Zebra Scanner model MC33

I'm developing a windows application with using scanner Zebra MC33. There is SDK pack which is described here: https://www.zebra.com/us/en/support-downloads/software/developer-tools/scanner-sdk-for-android.html

But my model MC33 is not in a list of approved devices. And test desktop app (supply in pack with SDK) does not detect my device.

Can somebody recommed what to do and if Zebra inc. plan to release SDK for my device (MC33) as well?

UPDATE: during debug my app catch answer code

112 = "ERROR_DEVICE_UNAVAILABLE" = " Required device is unavailable"

Upvotes: 0

Views: 1424

Answers (1)

Darryn Campbell
Darryn Campbell

Reputation: 1536

I work for Zebra and would concur with the comments below your question. The SDK you are using is designed for our range of handheld rugged scanners but the MC33 is considered a Mobile Computer and uses a different SDK.

I don't quite understand what you are trying to achieve by I'm developing a windows application with using scanner Zebra MC33. That device runs Android so if you want to send scan data to an application running on Windows you will first need to capture those scans on the device and then send them (through IP or BT for example) to your Windows desktop app. There are a few ways to do this (https://techdocs.zebra.com/help/) is a good entry point - you could use DataWedge to send the data over IP or you could write an Android app to send the data over a BT socket. There is a Xamarin SDK for C# development on the device that is popular with Windows developers but I don't think you mean that.

Upvotes: 1

Related Questions