Hello,
I would like to know if the EMDK (Xamarin) provides an API for a low level access to the NFC.
I need to perform both reading and writing operations over an NFC-V tag (ISO 15693).
The target device will be a TC-55.
Thanks
EMDK NFC support// Expert user has replied.Hello, I would like to know if the EMDK (Xamarin) provides an API for a low level access to the NFC. The target device will be a TC-55. Thanks |
Subscribe to email updates
Monthly updates from our Zebra development team, straight to your inbox.
1 Replies
Hi Diego,
No need to look in Zebra's EMDK. The functionality you're looking for is in the standard Android SDK and in the binding that Xamarin provides:
NfcV Class - Xamarin
The exact commands to use depends on the NFC chip that is used in your tags:
http://stackoverflow.com/questions/12688235/android-nfcv-iso-15693-tag
So, best option is to understand which chip is included in the tag you're trying to read/write, retrieve the datasheet of that chip and then use the right byte sequence for those commands using the transceive method: Transceive - Xamarin
Ciao
~Pietro