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

ISO 15693: SCardReconnect fails even though SCardConnect and SCardTransmit succeed (C#)

I am trying to implement code that will perform an SCardReconnect for certain error conditions when trying to read a TI Tag-IT RFID card with an HID 5321 smart card reader. In the event of a transmit error, I try a reconnect and retry the…
mikem419
  • 61
  • 1
  • 7
0
votes
0 answers

ISO 15693: OMNIKEY Contactless reader, occasional read failure

I am investigating an intermittent issue where reading eight blocks of data from a TI Tag HF-I RFID card from an HID OMNIKEY contactless reader. The ReadEightBlocks routine below is called 8 times from a for loop that bumps startBlockNum up by 8…
mikem419
  • 61
  • 1
  • 7
0
votes
1 answer

Data representation on NFC tag when writing with Android

MIFARE Classic 1K memory cards have multiple sectors to store data, so I want to know how the data is allocated and stored into the sectors of MIFARE Classic 1k when writing NDEF data to the tag in Android unsing the following command: Ndef ndef =…
Vivek Giri
  • 465
  • 1
  • 6
  • 21
0
votes
2 answers

Cannot access OSGI service provided in Rifidi Edge Server (RFID Middleware)

I have installed Rifidi edge server (open source RFID middleware provide services as osgi bundles) on windows7 and I am trying to develop a java application to connect and communicate with Rifidi edge server. I tried in two ways, firstly from an…
0
votes
1 answer

LLRP Impinj can't see Antenna Port when tag seen

I am currently connecting to an Impinj Speedway reader 220 and I have 2 antennas connected to it. When I load the Impinj MultiReader application and switch on Display Antenna Port, it gets which antenna the RFID tag was read on back to the…
Adam
  • 16,089
  • 6
  • 66
  • 109
0
votes
1 answer

Write data to specific tag

Is it possible to write data to a specific RFID tag (to its user memory actually) by using Motorola's EMDK for .NET / the Symbol.rfid2.device dll ? Imagine you have 2 tags in front of you and you want to write data only to one of them. The WriteTag…
0
votes
1 answer

Small Distance Measurement With Reader and Passive Target

My neighbor asked me (a mechanical engineer) to invent a device consisting of a distance meter and a passive target to determine the distance of an object from reader. Usage could be in a home, outside, anywhere. If distance exceeds a selected…
0
votes
1 answer

How to overwrite a block data that already exists in mifare 1K tag. Authentication fails when trying to override the data ina specific block

I write a data say 'qwerty' in a block 05 (keyA). Try reading it. its successful. trying to update/rewrite the same block with another data say 'asdfg'. but i could'nt authenticate the block. getting error message. Am i missing any settings or any…
0
votes
2 answers

A request to send or receive data was disallowed the socket is not connected

I am trying ti print a string to an RFID Printer using sockets. Here is my code. When i call : Print p = new Print(); p.printToIP(); I get this error: A request to send or receive data was disallowed because the socket is not connected and (when…
Lucky Luke2
  • 2,056
  • 5
  • 25
  • 32
0
votes
1 answer

Understanding different NFC tag-technologies

I am trying to understand how to handle different tag technologies. Until now I wrote/read my tags using NDEF messages. Now I want to read/write NfcV tags. Reading different tutorials I found out, that I need to use the transceive(byte[]) method of…
Torhan Bartel
  • 550
  • 6
  • 33
0
votes
2 answers

Writing Tags with NfcV tag.transceive

I'm working on an application about NFC writing. Lets call it Writer... I am writing data to a NfcV tag. The string I am trying to write is String test = "this is\ta real\ttestcase\tyou tag"; To write data I'm using NfcV's transceive method. So this…
Torhan Bartel
  • 550
  • 6
  • 33
0
votes
1 answer

communication between RFID (epc) tags and devices that have BLE

Is there a way to create communication between devices (phones) that have bluetooth 4.0 and different RFID tags like EPS tags on products, without using extra hardware? I search for an API that allows to use devices that have BLE (like the last…
Ygandelsman
  • 453
  • 7
  • 16
0
votes
1 answer

What tool to simulate rfid events on windows (python-win32 compatible?)

I'm building a medical application that should respond to a RFID card scan (and pop up some information). I'm using PyQT to build this, btw. Could someone tell me what tool to use to simulate rfid scans on the machine ? I'm a little noob to this,…
Sandeep
  • 1,745
  • 3
  • 20
  • 30
0
votes
1 answer

What python library for RFID/NFC readers in windows ?

I'm looking for a python library to be able to work with RFID/NFC readers on windows (XP onwards). I tried RFidiot, but it did not even install for me. Does anyone have a suggestion on which library I can use ?
Sandeep
  • 1,745
  • 3
  • 20
  • 30
0
votes
1 answer

how to read /dev/ttyUSB0 device in Linux?

I have connected a USB RFID in serial port and use to read RFID tags. So I need to read the data from the device and process the output. I am getting the data with screen command from Linux command line but I was not able to take the value from…
asprin
  • 9,579
  • 12
  • 66
  • 119