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
1 answer

Code that waits for an RFID badge to be scanned - what does it look like?

I am trying to write some code that integrates an RFID reader, and I have gotten kind of far with it, but I am still struggling on how I can set a wait time of some sort. Basically, I have an RFID reader that is hooked up to a jailbroken iPhone, and…
ipatch
  • 3,933
  • 8
  • 60
  • 99
0
votes
1 answer

2 different products with same rfid tag

I'm doing a smart shopping cart as a college project, the problem is if I have 2 pieces of the same product (2 same tags) in the cart, how can I make sure the reader reads both of them?
0
votes
1 answer

Can the communication of RFID tag and RFID reader be simulated by tcp comunication?

Can the communication of RFID tag and RFID reader(EPC Gen2 standard) be simulated by tcp comunication? What's the distinction between the two types of comunication
Gina
  • 173
  • 1
  • 4
  • 12
0
votes
2 answers

Select the NDEF record to read on an NDEF message?

I have developped 2 Android applications. The first one, to write into an NFC tag, and the second to read the contents I have written . So with, * The first application (WriteNFC): I'm writing into the Tag, one NDEF message who involves two NDEF…
mOmO
  • 186
  • 4
  • 12
0
votes
1 answer

Android read NFC tag data

I am currently developing an app which will read NFC tags currently i have written the code to get TAG id what should i do next? How can i read all data if the intent extra namedEXTRA_NDEF_MESSAGES is empty. the code for reading RFID i have for now…
J1and1
  • 920
  • 3
  • 12
  • 25
0
votes
1 answer

how to achieve RFID programming for android

I am not even sure whether this can be done or not! Searched for it but couldn't find much help on the subject So here I am. Is RFID programming for reading tags possible for Android OS? Can I have RFID enabled on my phone instead of a…
Harshdeep
  • 5,614
  • 10
  • 37
  • 45
0
votes
1 answer

Android NFC not opening correct class on tap

I have an app with 2 classes, I need my app to open the second class CardActivity when the NFC tag tapped/swiped. The app opens fine, but MainActivity is run, instead of CardActivity. I would hazard a guess that this is an issue with my manifest,…
Mike
  • 8,767
  • 8
  • 49
  • 103
0
votes
1 answer

Java: select serial port to read Arduino Uno

I am trying to read from an RFID tag number that is scanned by a parallax RFID reader and sent to the computer using the Arduino device. I am trying to read from the serial port using RXTXCommDrive, but the problem is that when the Arduino is…
0
votes
1 answer

How to read RFID tag data in iOS App using NFC Reader hardware

There is small illustration of NFC Reader Hardware here Under this video as soon as user scan RFID tags it directly print tag numbers on notepad/safari. My question is how we can read RFID tag data in iOS App using NFC Reader hardware. Do we have to…
Tariq
  • 9,861
  • 12
  • 62
  • 103
0
votes
3 answers

MF522-AN RFID Reader/Writer and Arduino issues

Alright so I'm pretty new to Arduino, picked up a Mega2560 starter kit as well as some other accessories off of eBay a little while ago I've got a "knockoff" board but it's seemed to work fine for everything else so far. Anyhow I purchased a…
Dino340
  • 1
  • 1
  • 3
0
votes
1 answer

rfid tags: same tag, different codes on different readers

Is anyone familiar with RFID codes here? I have a EM4102 type tag here. My handheld reader says on it's display: EM4102 tag, ID 04178649C1 The same tag, when read on a Gigatek/Promag PCR125 CF-card reader gives me the exact same…
Udo G
  • 12,572
  • 13
  • 56
  • 89
0
votes
1 answer

RFID USB reader terminal reading with Bash

I bought an RFID USB kit and haven't been able to read the RFID IDs with the following Bash script. #!/bin/bash while [ read -r rfid ] ; do #URL=http://www.mainpage.us/rfid/status.php?number=$rfid #curl --request POST $URL echo $rfid sleep…
DasBoot
  • 707
  • 3
  • 15
  • 37
0
votes
1 answer

RFID, Keyboard Wedge and Java

There are loads of RFID tutorial on the com port but none on the usb. There are descriptions of C# with the keyboard wedge but not for java. I have a keyboard wedge,'think thats a c# term' it basically gives the id as keystrokes. I need to verify…
happi
  • 1
  • 2
0
votes
1 answer

How to Capture the RFID Card's UID by just flashing the Card over the reader using Python2.7?

I have a RFID project, and wants the system to detect the card on the card reader as it is in read range and capture the UID and continue the process. As of now I have placed a button called ScanCard, in it I have placed the card read functionality,…
Prasanth
  • 339
  • 1
  • 6
  • 19
0
votes
1 answer

NFC Access Control Doorlock System/Nexus as RFID tag

I've got a pet project that is to essentially build out an NFC access control doorlocking system for my house. I originally wanted to replicate my office keycard on my nexus s but ran into a wall after I learned that card emulation is impossible…
JoeAranda
  • 13
  • 1
  • 3