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

Arduino - Function-definition is not allowed here before '{' token

I am trying to make an Arduino rfid door lock, with arduino uno, stepper motor, funduino rfid-rc522. Here is the code: //declare variables for the motor pins int motorPin1 = 6; // Blue - 28BYJ48 pin 1 int motorPin2 = 7; // Pink - 28BYJ48…
user2975367
  • 917
  • 1
  • 7
  • 7
0
votes
1 answer

Start a Shell Script on Raspberry with an RFID Tag

I am writing a Cash-System for a small Cafe, using a Raspberry 2 (Raspbian OS), a Touchscreen and an RFID Reader. I want to get completely rid of a keyboard and mouse. So all user interactions have to happen with touchscreen or RFID. Every employee…
Sauer
  • 1,429
  • 4
  • 17
  • 32
0
votes
3 answers

Connecting RC522 RFID to Arduino Yun

I'm trying to connect my RC522 RFID reader (http://playground.arduino.cc/Learning/MFRC522) to my Arduino Yun. Unfortunately it doesn't work because the SPI connection seems to be different from the Arduino Uno (accodring to Google). On my Uno it…
Sebastian
  • 3
  • 5
0
votes
1 answer

Bit Order Of Trailor Sector in Mifare Classic 4k

With reference to section 8.7.1 to 8.7.3 NFC Mifare Spec Doc. I need to know the bit order of the trailor sector bytes, i.e. byte 6, 7, 8. So that I can do further processing on the trailor Sector i.e. write new key with access bytes to trailor…
0
votes
1 answer

Error 69 86 while loading key in RFID card reader

I'm trying to load keys in volatile and non-volatile memory of my card-reader Omnikey 5421 and I got the error answer 69 86 The load command is: FF 82 00 01 06 FF FF FF FF FF FF or FF 82 20 01 06 FF FF FF FF FF FF The answer is always 69 86. For…
hunterra
  • 95
  • 1
  • 6
0
votes
1 answer

ZPL Command RFID

I'm trying to encode a rfid tag using a zebra printer, sending these commands it encodes but I need to cut or hide some part of the number ^XA ^RS8 ^RFW,H ^FDD020004D^FS ^XZ The commands above records this to the tag D020004D000000000000 but I dont…
alvariux
  • 23
  • 1
  • 8
0
votes
1 answer

c-code for parallax rfid reader on raspberry pi

I've searched for quite some time now for a solution to my problem. I'd like to read RFID tags on my Raspberry, but I want to do it in C-code, as the rest of my project is written in C. I have a few questions to the following C-code I found here on…
user274950
  • 35
  • 6
0
votes
0 answers

How to add write to file function with input over RFID?

I am trying to write the ID found over RFID to a file - but when I send the bytes to the file, it gives the wrong ID. I am adding the write file function to this example - where the ID comes from an RFID tag, and when I open the file, the format is…
jonny maguire
  • 13
  • 2
  • 6
0
votes
1 answer

Setting the modulation index (10% or 100%) for ISO/IEC 15693 programatically on Android

Is possible set modulation index (10% or 100%) for ISO/IEC 15693 reading on Android devices programatically? Otherwise, is there a way to redo the tag through code without manually reconnecting the device again?
Chianta
  • 3
  • 3
0
votes
1 answer

Contactless Smartcard response only to first APDU command

I´m reading SmartCard- Mastercard with RC530 but same problem in RC522. Problem is response everytime only on the forst command. I send : status =Request(); status =Anticoll(); status =Select(); status =RATS(); // send first APDU…
Hw-dev Cz
  • 19
  • 4
0
votes
1 answer

RFID as keystroke in flash

I have some apps in Flash that require a keystroke to navigate through scenes (on keypress 1, goto scene 1, etc.). I have done this with some apps where I can "avoid" the physical keyboard. For example, motion detectors that type "1" when finding a…
0
votes
1 answer

Communication between RFID reader and PHP

I have to develop an application for read RFID tag in a PHP Application. For this, I bought a reader RFID : http://idtronic-rfid.com/industrial-readers/bluebox-uhf-controller/controller-cx-2ch/ This reader connects to my PC with RJ45. I installed a…
Tom59
  • 125
  • 3
  • 14
0
votes
2 answers

What does it mean by .net SDK?

What is .net SDK means?i am interested in RFID scanner and i asked the seller that i wanted to make a custom application using their hardware, and they said that they could provide the .net SDK. I just wonder is it like the package that i can…
Chon
  • 29
  • 3
0
votes
1 answer

Reading RFID via USB on Raspberry with Python

i got this 2 python script import serial serial = serial.Serial("/dev/ttyUSB0", baudrate=9600) code = '' while True: data = serial.read() if data == '\r': print(code) code = '' else: …
0
votes
1 answer

Reading RFID tags from multiple antennas through Motorola Reader FX7500 - Java

I have Motorola FX 7500 and two antennas. I have placed the two antennas at the entrance gate so that the antennas face each other. I am able to successfully read the TAG values from the individual antennas but what I want is a single value for both…
Saurabh Singhal
  • 271
  • 1
  • 5
  • 18