Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to communicate RFID tags with IDBlue RFID pen using iPhone?

For iphone is it possible to communicate RFID tags with IDBlue RFID pen (bluetooth connected) and store data into my application?

If yes then is there any some readymade component or code library available for this?

like image 231
Mrunal Avatar asked Jul 27 '11 10:07

Mrunal


People also ask

Can iPhone read RFID?

Only the iPhone 7, iPhone 8, iPhone X and newer iPhones supports reading NFC tags; the iPhone 6 and earlier does not support reading NFC tags. While the iPhone 6 does have an NFC controller to support Apple Pay, Apple has decided to not allow the iPhone 6 to read NFC tags.

Can any RFID reader read any tag?

RFID Tag Technology In most instances, each type of passive RFID tag (LF, HF, or UHF) can only be read by the SAME type of passive RFID reader. For instance, usually an LF reader will only be able to read an LF tag; it will not able to read an HF or a UHF tag.

Are RFID tags programmable?

Also known as a field-programmable tag, it is RFID tag memory that can be programmed once and is then write-protected. After the memory is written to it is considered read- only memory.


2 Answers

The latest IDBLUE.HF reader is compatible with iOS devices. For information on how to develop applications for the reader with iOS, please contact us at http://idblue.com/support/contact-support.

like image 137
Jason Strong Avatar answered Oct 06 '22 10:10

Jason Strong


IDBlue has a iOS Framework available here: IDBlue Framework. (Look under "Developer Toolkits")

The latest version (1.0.0.1) was released 1/12/2012. It works for their HF and UHF readers, from what I understand. To add it into your iOS project:

  1. Right-click your "Frameworks" folder in the Project Navigator.
  2. Select "Add Files to [your project name]..."
  3. Navigate to the unzipped sdk folder, "IDBlue.framework".
  4. Select this folder

To learn how to use it for development, just use the "help.html" file they've included. It has fairly detailed documentation on everything. *Note: In order to integrate the Framework correctly I had to do the following:

  1. Add a reference in my Build Phases to Apple's ExternalAccessory framework
  2. Set the "Build Active Architecture Only" setting in Build Settings to "Yes"

Hope this helps.

like image 34
w3bshark Avatar answered Oct 06 '22 10:10

w3bshark