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
0
votes
2 answers

RFID reader communication

i have RFID reader ZK-RFID101 and when i bought it it came with a SDK to develop and communicate with the reader but when i am trying to use it it wont work, i don't receive any information from the reader public class Reader18 { /** *…
user2102954
  • 1
  • 1
  • 1
0
votes
3 answers

Cannot access serial port during debugging

This is my first SO question so please correct me where I am not supplying enough or correct information. I'm interfacing two RFID tag readers via RS232 ports on a FTDI serial to USB hub to my program. The program runs perfectly outside VS2010, but…
phzietsman
  • 189
  • 2
  • 9
0
votes
1 answer

Can I convert the Data Received from serial port to only number without spaces and symbol?

Data received output http://postimg.org/image/5hvqgosc7/ This is the string display of RFID tag number. Is it really this one shows up for all rfid or can I change it to display numbers only without spaces and symbols? or is there a problem in my…
0
votes
1 answer

What happens to CRC errors with .transcieve(byte[])?

I am transferring bytes to and reading bytes from some tag technologies; NfcA, MifareUltralight, IsoDep (Mifare Desfire), NfcF(FeliCa Lite-S) and MifareClassic. These all have a transceive(byte[]) function for transmitting commands. For my work it…
Aage Dahl
  • 25
  • 8
0
votes
0 answers

convert RFID byte to get RFID serial card number

i have a problem converting the byte i get from the tag into serial number. i get this byte from the tag: 2 52 66 48 48 65 57 55 70 57 48 48 68 13 10 3 i'm code it in C#, and here is the code : SerialPort port = new SerialPort("COM2", 9600,…
Brilian
  • 9
  • 4
0
votes
2 answers

TagLostException with FeliCa tag

I have a FeliCa Lite S tag that I am trying to read information from. My problem is that i get TagLostException whenever i execute a trancieve command. The following code should read the first block in my tag according to "FeliCa Lite-S User's…
Aage Dahl
  • 25
  • 8
0
votes
1 answer

Mapping Nfc technology to tag types

I am writing an app that should be able to read from and write to nfc tags of type 1, 2, 3 and 4. I have tag1, tag2 and tag4 tags that all support NfcA technology and i want to use the NfcA class…
Aage Dahl
  • 25
  • 8
0
votes
1 answer

Attempting brute force attack on MIFARE classic 1k

I'm attempting to write a program to guess a block key of one of my MIFARE Classic 1K cards. Is it feasible to to maybe run something like this? int i = 0x0; while (true) { i += 0x1; Console.WriteLine(string.Format("0x{0:x8}", i)); } I…
JJC
  • 25
  • 1
  • 1
  • 3
0
votes
1 answer

RFID locating system android application

I am trying to develop an android mobile app to find lost objects using the RFID technology. After much research I found that insted of needing an RFID reader, I would need an RFID radar. What's the difference between them? What does my app need to…
0
votes
2 answers

Import Dll library in java

I have a Dll library that contain methods for changing the state of RFID reader , So how can I import the library to be able to use these methods in java ?
0
votes
0 answers

How to write RFID data tag?

I have an RFID read/writer with the tags and would like to write some data on them. The only thing that the read/writer don't have is the software to write on them. I have downloaded a software and it looks like it is working. Now the problem I am…
keith Spiteri
  • 259
  • 1
  • 6
  • 22
0
votes
1 answer

Wireless Inventory Scan

I'm working on a prototype of a box, let's say a cabinet, that needs to be aware of what's inside of it. Each item to be placed inside will have a unique identifier, possibly with a Bluetooth, RFID or NFC tag. The cabinet will be using the…
ejfrancis
  • 2,925
  • 4
  • 26
  • 42
0
votes
1 answer

NFC-V SLIX-S write password

I'm trying to set AFI password to the SLIX-S tag. I found the command for set password is B3: take a look please (Link here: Page 12). But every time my set password command crash. I think the format of the code line I use is wrong. Is there any…
Matwosk
  • 459
  • 1
  • 9
  • 25
0
votes
1 answer

HTTP Post using .Net C# in speedway connect software

I am using RFID Speedway connect software in the Speedway reader, I got a PHP sample for HTTP Post and after googled sometime I couldn't find the sample for .Net C#. So I tried in simple asp.net application[hosted in IIS] to receive the HTTP post…
Prabhakaran
  • 1,264
  • 2
  • 20
  • 47
0
votes
1 answer

Smart card readers for MiFare Classic cards

While reading papers on how to attack MiFare Classic cards to figure out how secure is it, I have noticed many times that researchers talk about "genuine readers" and I couldn't understand very well what is meant by this term. Aren't all the readers…
Sisyphus
  • 900
  • 12
  • 32