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.
1319 questions
-3
votes
1 answer

VB.NET Serial Port reading HEX data and insert in the textbox

I want to read the data from UHF RFID reader that is connected on one of my com port, the data should be in HEX and must be a complete HEX that should be pasted in the textbox in my windows form application that I made in VB.NET. Kindly help me I am…
Ammar Ashraf
  • 61
  • 3
  • 10
-3
votes
1 answer

A method to identify a nearby object using a cell phone

I need to know whether it is possible to identify an object in a proximity of about 3 meters , using a cell phone , preferrably without using additional hardware on the cell phone side . if the aforementioned hardware is indispensable , still , a…
Hesaam
  • 13
  • 2
-3
votes
1 answer

Random creating binary ID

Could you help me? I have n = 10 (ten tags) with 8 bits value each. Every tag should have one randomly created 1's in ID (for example 00000100, 01000000). How can I do this in Matlab?
NikolaC
  • 5
  • 5
-3
votes
1 answer

How to write selectively to an RFID tag?

How can I efficiently write to an RFID tag without using a For loop. Right now I am looping and filling up all the blocks in the series. I want to make a program were I could fill in specific blocks with specific values. I want to know if there are…
Elwick
  • 126
  • 1
  • 7
-3
votes
1 answer

Data reading and writing in a RFID chip through iphone application

I am trying to make an app Which can transfer some points to an RFID chip. RFID chip will store the data. Then an other iPhone with my app will receive the stored points wirelessly. Is it possible to write some data in some RFID chip like (Mifare…
YesAbhi
  • 5
  • 1
  • 6
-3
votes
1 answer

How to scan RFid tags with NFC in iOS? Example Code or any SDK?

I search lot but didn't found any solution. From where I can find the SDK or any API or any example how to implement.
-3
votes
1 answer

interact with RFID and facebook

So, i want to retrieve an ID from one RFID card this is where it gets tricky for me. I have the option of creating a facebook app, but as far as i can tell, facebook only let's you log if you enter your credentials, if you have cookies stored then…
skills
  • 315
  • 5
  • 17
-4
votes
2 answers

IndexError : List Out of Range

Due to using NTAG213 and MFRC522 (RFID), so I read the database from NTAG213. So there's something that I changed, and you can see that the problem may in the "num_to_dec" but I confused how to change it. This is how the error looks: And this is my…
-4
votes
1 answer

how to output a tring from an nfc tag to a text file using arduino uno and pn532?

iam in a deep trouble , I have an Arduino uno and a pn532 connected to it in SPI mode , I want to read a string from an nfc tag and output it to a text file , I have already managed to read from nfc tag and write on it easily , but what Iam facing…
-4
votes
1 answer

Need advice with OpenCV and RFID (Thesis)

My thesis's goal is to detect vehicles stopping at non permissible zones using a camera and issuing a violation to that particular vehicle by getting his vehicle identification and sending the data to a database. (Maybe through RFID) I've gone…
Andre
  • 101
  • 9
-5
votes
1 answer

int value of COM11?

I have a RFID Reader that connect to my computer via COM. 1> When the reader connect to my computer via COM3 C++: OpenComm(3) --> OK 2> When the reader connect to my computer via COM9 C++: OpenComm(9) --> OK 3> When the reader connect to my…
Van Duoc
  • 65
  • 1
  • 8
-9
votes
3 answers

What do the operators |= and <<= do?

I have an Arduino sketch, which is basically c++, that has these lines of code in it: uint32_t cardid = uid[0]; cardid <<= 8; cardid |= uid[1]; The Arduino is connected to a pn532 RFID reader so basically it scans the card that comes in range and…
Chips
  • 117
  • 3
  • 10
1 2 3
87
88