Questions tagged [rfid]

RFID is short for Radio Frequency IDentification. RFID systems consist of tags (physical markers that contain information) and readers (that can enumerate tags and read information from them, and in some systems, write information to them). RFID is typically used to identify (and obtain information about) products and equipment marked with RFID tags.

RFID is short for Radio Frequency IDentification. RFID systems consist of tags (physical markers that contain information) and readers (that can enumerate tags and read information from them, and in some systems, write information to them). RFID is typically used to identify (and obtain information about) products and equipment marked with RFID tags.

Image of an RFID tag

There are various different standards for RFID systems. Systems can be classified based on their operating frequency ranges:

  • LF: Low Frequency (125/135 kHz).
  • HF: High Frequency (13.56 MHz). Short read range, used mostly for ID cards.
  • UHF: Ultra High Frequency (840 - 960 MHz). Long read range and fast data capture (reads per second). Used for stock control and distribution in large open spaces.

Besides their standard RFID tags can be categorized based on their power supply:

  • Passive: Tags are powered through the RF field emitted by the RFID reader. They modulate their power dissipation or reflect portions of the reader RF signal to send data back to the reader.
  • Semi-Active / Semi-Passive: Tags are powered by themselves (e.g. through an on-board battery). Tags send data to the reader by modulating their power dissipation or reflecting portions of the reader RF signal.
  • Active: Tags use their own power supply (e.g. an on-board battery) to both, power themselves and to generate their own RF signal to send data to the reader. This typically allows a larger communication range than with passive and semi-passive tags.
1203 questions
11
votes
3 answers

Detecting presence (arrival/departure) with active RFID tags

Actually arrival is pretty simple, tag gets into a range of receivers antenna, but the departure is what is causing the problems. First some information about the setup we have. Tags: They work at 433Mhz, every 1.5 seconds they transmit a…
Alexxandar
  • 897
  • 2
  • 11
  • 23
11
votes
3 answers

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…
savinger
  • 5,834
  • 8
  • 34
  • 56
10
votes
4 answers

Can a Smartphone read RFID tags from a distance of few feet (NOT NFC)?

Being a bit more specific: I would like to know whether there's a Smartphone that can detect an RFID tag from few feet away using its original HW (no external devices) and OS capabilities. Any comment/direction to reading material will be highly…
Dalig Neb
  • 101
  • 1
  • 1
  • 3
10
votes
1 answer

Android NFC read ISO15693 RFID Tag

I am trying to read an ISO15693 RFID tag with the nfc android library: Here is more info on the Tag: http://img42.com/gw07d+ The Tag ID is read correctly but the data in the tag is not. onCreate Method: // initialize NFC nfcAdapter =…
yoshgoodman
  • 173
  • 1
  • 10
9
votes
1 answer

RFID card identification

I am looking for some libraries in delphi to programming and reading from RFID cards. today I use normal Mifare 1k cards, and use a simple library to read the cards UID, but I would like to do more with these cards, like storing and reading from…
Plastkort
  • 927
  • 1
  • 23
  • 40
9
votes
1 answer

Mifare Change KEY A and B

I have an ACR122U Contactless NFC reader. I bought a lot of blank RFID Mifare 4k tags. Their default Authentication KEY A and KEY B is FF FF FF FF FF FF. Now I want to change them to something else. I'm using APDU structure. I'm sending commands…
Marc Raibowitz
  • 99
  • 1
  • 1
  • 3
9
votes
3 answers

Do RFID tags have a processor?

Do RFID tags have a "real" processor capable of simple computations? If so, what is the processing power of nowadays RFID processors?
qertoip
  • 1,780
  • 1
  • 16
  • 28
9
votes
4 answers

How to get the UID of RFID in Arduino?

I have a RFID-RC522 (MF-RC522) module and I'm using Arduino sketch program. To use this RFID, I downloaded the Arduino MFRC522 library. And I run the example code of library. Here is the code. /* * MFRC522 - Library to use ARDUINO RFID MODULE KIT…
Jinha.Kim
  • 125
  • 1
  • 3
  • 9
9
votes
2 answers

Is possible to lock a NFC tag and later unlock and write data again?

I'm developing a NFC app that will have tags in public places, and in this way it would be necessary to lock the tags with a password or other tool, to avoid that someone deletes the information or modifies their content. The tags should be…
Bruno Santos
  • 113
  • 1
  • 1
  • 7
8
votes
2 answers

Android and Symbian NFC mobile development questions and answers (FAQ)

Let’s share on a common place ideas about the NFC development, technology… I warmly welcome any comments you might have – either about the Android or Symbian SDK or about the NFC in general. From my point of view the general question is what we can…
STeN
  • 6,172
  • 21
  • 75
  • 121
8
votes
1 answer

Reading and writing Mifare Classic 1K RFID on Nexus-S

I'd like to be able to write and read strings from a Mifare 1K RFID. I successfully read and wrote to the tag I have using the NXP TagWriter App. I then tried the code here, but was able to get anything meaningful out of it. It wouldn't even…
neufuture
  • 277
  • 3
  • 9
8
votes
1 answer

ACR122 USB SDK - JNI calls to Winscard.dll

we have bought the ACR122 USB SDK for NFC testing. We would like to build the test desktop application for the ACR122U-A2 NFC reader. We are developing it in Java on the Microsoft Windows 7 platform. We expected that in order to use PC/SC from…
STeN
  • 6,172
  • 21
  • 75
  • 121
8
votes
5 answers

Getting started with nexus s NFC/RFID

Getting started with Nexus S NFC/RFID. Can anyone provide any guidance? I'm interested in creating some home brew demos using the nexus s NFC/RFID hardware. I think I need to find the appropriate tags and how to encode urls into tags that the nexus…
8
votes
1 answer

HF-RFID vs. NFC - Can an NFC-enabled mobile phone read high frequency RFID tags?

I see lots of forums that say RFID is different than NFC. I absolutely agree with this as both have different standards and operate on different frequencies. After some further research, I found that some RFID standards (HF-RFID) exist in the 13.56…
AskMe
  • 2,003
  • 4
  • 31
  • 65
8
votes
1 answer

Mifare 1K authentication keys

I have a MIFARE 1K tag. Some blocks can be written/read using authentication key A, while other block can be written using authentication key B. Why? How can I change all blocks to be written/read, for example, with key A? For example, I can write…
Andrea
  • 115
  • 1
  • 1
  • 7
1
2
3
80 81