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

reading form multiple serial ports at same time

i am working on attendance system project based on data sent from RFID via arduino to VB.net through serial ports Private Sub connect_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles connect.Click connect.Enabled =…
0
votes
0 answers

C# convert hex-string to decimal

I started my project to get UID of Mifare 1k Classic Cards - this is working really good. Now I have to put my UID to a mySQL database. I converted my ByteArray to string - this works as well. private string getcardUID() …
0
votes
1 answer

VBA how to point / get address of byte array variable whole value

I have problem to get whole hex value of variable. I have 2 RFID tags which TID's are: E2 00 68 06 73 D5 E2 1F and E2 00 68 06 73 D5 E0 16 each next tag is identified with E2 00 68 06 73 .. .. .. and last 3 bits are changing to give unique id to…
aptp
  • 1
  • 2
0
votes
1 answer

Interpreting data from RDM630 RFID reader

I am trying to build an RFID based door opener with an Attiny2313 and an RDM630 RFID reader. There has been no Problem with programming or getting the two ICs to talk to each other via UART. The Problem is the interpretation of the data. I wasn't…
0
votes
0 answers

Silverlight OOB Read COM port data received eventhandler crashes

I'm trying read data of RFID scanner using Silverlight4. I know I can do so as Silverlight4 supports reading client COM ports in OOB mode and using Elevated permissions. RFID scanner works fine when I read the data by simple win app however when I…
Ahmed Fayed
  • 141
  • 2
  • 10
0
votes
1 answer

In RFID, are there tag modules that give the user a choice of different outputs?

I look for an RFID tag that gives you the option to 'choose the output'. For example, you want to choose an RFID-output from a list of X possible outputs using a multi-directional switch with X directions. Does something like that exist? What…
0
votes
1 answer

ISO15693 (NfcV) / Tag-it HF-I commands throw tag lost exception

When I try to transceive commands for NFC-V Tag-it HF-I Plus Inlay tag I get a TagLostException for most of the commands. From the links I have gone through this exception may be caused by incorrect commands. How can I create correct ISO15693…
Rachita Nanda
  • 4,509
  • 9
  • 42
  • 66
0
votes
0 answers

RFID card reader Samsung galaxy tab

I developed an Android app for a Samsung Galaxy Tab 4 in Android 4.4. Now I'm trying to connect a RFID card reader through my microUSB port to emulate a keyboard so we can read different tags which contain different info. I'm using the Syris…
acostela
  • 2,597
  • 3
  • 33
  • 50
0
votes
0 answers

Parallax USB RFID Raspberry Pi python doesnt read as if plugged in as keyboard

When I plug my Parallax RFID USB reader into usb port on Windows and scan a tag, I get 0004268206 But when I follow every's tutorials on reading RFID tags with this reader on a Raspberry Pi using python I get a totally different number. How can I…
swg1cor14
  • 1,682
  • 6
  • 25
  • 46
0
votes
1 answer

Text is not Appending to TextBox after reading data from serial Port

I have written a program in which i am reading data from Serial Port. After Reading the data, i am Displaying the status of it in a textbox named "lblStatus". But after reading from the port everytime, the text in the textbox is not getting…
0
votes
0 answers

SCardTransmit() returns 801000002

I had a working contactless system in Windows XP. But when I tried to run it under Win7 it fails in this sCardTransmit function even though it runs connect function well: UCHAR ucAnswerL[255]; DWORD ucAnswerSizeL = 0; BYTE …
0
votes
2 answers

How can I make ShowDialog() not to block the caller's event

just a little problem with my program. I have been working in a device application in VS2005 VB.Net. This program will run at my device, that will connect in a bluetooth device. This is the current code: In the class that handles the event: Public…
Gatherer
  • 35
  • 7
0
votes
0 answers

Using RFID in multiple windows forms

Hie there. I am trying to use RFID tags on different forms. The code I have works fine if in one from. As soon you add it to another form it stops. I have tried using event handlers to no success. Does anyone know how I coud do this. Here is my…
taff kavhu
  • 11
  • 2
0
votes
1 answer

NFC to read long range RFID tag or any Long Range tag

I am building an app which requires data reading between phone and any type of hardware (NFC tag, RFID tag) but it has to be long range. For example reading a RFID tag from 5 meters using a Android or iOS phone. I tried normal NFC tags but it has a…
Mo Adel
  • 1,136
  • 1
  • 16
  • 29
0
votes
1 answer

NFC logger battery voltage

I have a data logger (datasheet) and I am trying to get Battery Voltage using Get Battery Level command (0xAA) but the result is incorrect (negative number). Anyone knows what seems to be a problem? My source code: public static double…
user1926550
  • 539
  • 5
  • 10
  • 18