savinger
savinger

Reputation: 6714

RFID Reader for Mobile Devices

I've been asked to develop an app with the core functionality of reading RFID chips in pets and checking those identification numbers against a database through some web service.

I was first directed towards iCarte, supposed maker of an NFC/RFID Reader accessory for iPhone. I sent them an email that was immediately returned due to them exceeding their mailbox quota, so I suppose they are out of business?

Other solutions come in the form of Bluetooth ready readers, like those from Serialio. Demos show data being read into iOS's Notes app or some grid app. I haven't developed iPhone apps in a while... is the Bluetooth API available? How about for Android? Could I read from the Bluetooth reader straight into an app?

What other options are there?

Upvotes: 13

Views: 51207

Answers (3)

Rasoul Miri
Rasoul Miri

Reputation: 12222

Passive RFID tags primarily operate at three frequency ranges:

  • Low Frequency (LF) 125 -134 kHz

  • High Frequency (HF)13.56 MHz

  • Ultra High Frequency (UHF) 856 MHz to 960 MHz

Smartphones today often support HF RFID

Upvotes: 0

Marek
Marek

Reputation: 892

Before you start any work please familiarize yourself with this:

http://en.wikipedia.org/wiki/ISO_11784_%26_11785

and this: http://en.wikipedia.org/wiki/ISO_14223

RFIDs for animals are completely different protocol than NFC. It is more like UNIQUE tags (125kHz) . Anyway above ISO standards will be a good starting point for you.

Upvotes: 5

Budius
Budius

Reputation: 39846

Android have native support for NFC, you don't need any bluetooth adapter or anything else:

http://developer.android.com/guide/topics/connectivity/nfc/index.html

Not all devices have it, but the major ones do have (e.g. galaxy nexus, nexus 4, galaxy S3, HTC One) and it works nice.

Upvotes: 4

Related Questions