How to write RFID tag for NFC Nexus S read?

Does anyone know if there are any peculiarities of writing information in an RFID tag and reading it from Android, Nexus S?

Is there a special RFID tag for Android only or a special RFID writer?

+5
source share
7 answers

Android 2.3.3 now supports recording capabilities. Details supported by tags: http://developer.android.com/sdk/android-2.3.3.html .

I plan to work on several examples on how to read and write tags and publish links on my Twitter account @hansamann

+3
source

, Nexus S NFC .

, RFID- , :).

+1

Nexus S Mifare. YouTube (http://www.youtube.com/watch?v=eu7fQsPjDls) - Nexus S.

0

URL (Nokia 6212). Nexus S, .

0

( RFID- NDEF)

NdefFormatable format = NdefFormatable.Get(tag);
if (format != null) {
    try {
        format.Connect();
        format.Format(message);
        return true;
    }
    catch (IOException e) {
        return false;
    }
}
else {
    return false;
}

This is in Monodroid, but I think the concept in Java is the same.

0
source

You can create your own NFC tag reader:

Create a payload and emulate an RFID tag using another Android device. Make sure you give NFC_READ, NFC_WRITE permissions in the manifest files.

0
source

All Articles