Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Supported long-distance RFID passive tags on android phones with NFC?

Tags:

android

nfc

rfid

Is there any way for an Android phone with NFC (Nexus, Galaxy, etc.) to read a passive RFID tag that was designed for longuer distances reads? I'm interested in using a same tag that can be read by a RFID reader at a longuer distance and a Android Phone with NFC at a shorter distance.

Does such a tag exist? Is so, how can I read and write it with the Android SDK since it's not a typical NFC tag?

like image 759
Michael Eilers Smith Avatar asked Jun 27 '12 17:06

Michael Eilers Smith


1 Answers

The Nexus devices with NFC all support ISO15693 tags. ISO15693 tags are vicinity tags and offer maximum read distance of 1-1.5 metres (depending on the reader antenna). The Nexus devices have a read range for these tags comparable with other NFC tags: a couple of cm at the most.

Android supports NDEF content stored on some ISO15693 tags: the NXP ICODE range of products. Android's Ndef technology class will take care of the reading and writing from/to such tags and automatic discovery, like for other NFC tags. For a non-Android reader details on how NDEF is stored on ICODE tags is described in http://www.nxp.com/documents/application_note/AN11042.pdf and http://www.nxp.com/documents/application_note/AN11032.pdf.

like image 74
NFC guy Avatar answered Sep 28 '22 10:09

NFC guy