Reputation: 732
As far as I understand with the latest Android SDK it is possible for the phone to act as a 'Tag' to be read by a NFC reader.
I would like to implement the following scenario:
Data collected that way would be browsable via a web page.
1) Is this a possible/valid usage scenario for NFC?
2) What kind of equipment is necessary to accomplish this? (I do have a NFC-enabled phone already)
Thanks
Upvotes: 1
Views: 1734
Reputation: 52936
It kind of depends on what you mean by 'the phone to act as a "Tag"'. You can't really do card emulation on commercial devices. You can with a rooted phone and the latest version of CyanogenMod though, with certain limitations. The only way for the phone to actively send out data via the official SDK is in P2P mode via Android beam which lets you exchange NDEF messages. If that works for you, as long as you can have your host-side program receive and process those (you will need to find an implementation of SNEP or the Google proprietary 'NDEF push' protocols), the whole system could work. This works out of the box with two Android phones, for an external reader you would have to do more work.
This is a cheap and relatively common reader with drivers for multiple platforms. It does have some timing issues, but should do for most purposes.
Upvotes: 1