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
3 answers

How to connect 2 RFID Reader simultaneously in C++?

I have 2 RFID readers. Reader 1: port=com4 and baud=9600 Reader 2: port=com9 and baud=9600 I want to connect 2 RFID readers simultaneously. However, even if I instantiate both readers in my code, I only manage to access one of the two readers. I…
Van Duoc
  • 65
  • 1
  • 8
0
votes
1 answer

start speech recognition program when specific microphone is detected at USB port (inorder to avoid careless usage)

I want to restrict my speech recognition program to be only used by one single specific microphone. How to design the module so that if that specific microphone is connected then the further execution will start, otherwise it will be terminated. I…
bsnayak
  • 58
  • 7
0
votes
2 answers

Mifare card security

Some days ago I connected a USB contact-less Smart-Card reader and sniffed that USB port via an USB Sniffer tool. Afterward, I put a 1k Mifare card on the reader and read 1 byte. I take a look at the sniffer tool output and understand that the keys…
TheGoodUser
  • 1,188
  • 4
  • 26
  • 52
0
votes
1 answer

How to check the checksum of a RFID tag

Following this steps I wrote my function to check that the value of the tags I scan is correct, but it always returns false. Here is my function: int checksum(const char* string) { int i; char hexPairs[6][2]; long totXor; // load…
adryledo
  • 34
  • 5
0
votes
4 answers

read RFID tag using NFC

I want to develop a android application witch can read the ID of a RFID card(mifare classic type A) usin NFC but my Application detect the card but it does not return any thing .. help please btw i hqve 2 class class MainActivity: package…
Ahmed Jemli
  • 1
  • 1
  • 1
  • 1
0
votes
1 answer

RFID Doesn't answer always properly

I have an RFID card reader connected to my pc on serial port. It's using RS485, so I need switching between send and receive state. The communication frames contains header and CRC (CRC16 ccitt - Xmodem). After every writing on the port I'm waiting…
K. Roland
  • 332
  • 2
  • 11
0
votes
2 answers

c# form application label does not update

Hi everyone this is my first question to stackoverflow and sorry for my English. I searched for a week and couldn't find the solution. I am working on a project which uses RFID antenna and tags . A machine reads the tags and produces tag id like…
0
votes
1 answer

TWN3 Mifare USB and Mifare Desfire

I use TWN3 Mifare USB transceiver and a Mifare DESFire EV1 transponder. I have a problem to get data from transponder. (For serial communication I use Hercules SETUP utility 3.2.6.) I open serial communication put transponder on transciever send…
Petofi
  • 481
  • 5
  • 16
0
votes
1 answer

How get Mifare Ultralight 16 digits UID reading with Nexus 5

I'm very new in NFC for Android. I need very much code example or good tutorial for Java for how get Mifare Ultralight 16 digits UID reading with Nexus 5 I only know how to get 7 digits UID for MifareClassic from here Reading the tag UID of Mifare…
Kiryl Ivanou
  • 1,015
  • 2
  • 12
  • 22
0
votes
1 answer

use Motorola scanner SDK with DS9808-SR rfid reader: Always receive "tag not found" from attribute 35009

I am testing CS8300 RFID tag by using Motorola Scanner SDK and Motorola DS9808-SR rfid reader. Basically, all the simple tasks work: let scanner beep, getting epcID through attribute 35001, etc; EXCEPT: That I ALWAYS get status 2 (which means 'tag…
0
votes
1 answer

Node.JS app quits after 4th use

I'm having quite a weird problem with a node.js app I made. The app is designed to accept a request from a web application. A page has a button which says "get RFID". Using this button, a signal gets sent to my node.js server (a Raspberry Pi). The…
MichaelP
  • 181
  • 5
  • 22
0
votes
0 answers

RFID application using C#. Reason for not able to read data

I have managed to connect to the RFID USB reader using the code below... However, whenever my tag is placed near the reader. It does not run the function and produce an output of "Reading Data...". Anyone can provide me a functioning RFID coding?…
Ping
  • 103
  • 2
  • 3
  • 17
0
votes
1 answer

How to read data from an RFID device using RJ45 Port?

I am creating an attendance marking system in using visual studio 2010 and Sql server 2008R2.And an RFID card for each members.I am using third party device AR800P-TCP as RFID reader,It has RJ45 port to connect with PC.i want to read data from card…
Sinsil Mathew
  • 498
  • 6
  • 20
0
votes
1 answer

Uploading Arduino Sketch via Visual Studio with Variables

So I have my application and arduino connected via serial communication and the project works like I want it to so far. The arduino is currently connected to an RFID board and intakes scanned RFID tags and saves them to a database. What I want to do…
0
votes
1 answer

Get all RFID readers connected to the network

I need to get all the RFID readers connected on the ethernet, currently I have an application which connects to one reader at a time. Also the IP address for the reader needs to be specified for connection. I am using Motorola FX9500 fixed RFID…
ajthak
  • 1
  • 2