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

NFC smartcard that is impossible to clone

First, I want to apologize. I am complete noob in this area and many of my thoughts are probably misleading. I need to verify that a user of my app is on a specific place in order to be authirized to perform an action. I want to use NFC for this…
Míla Mrvík
  • 525
  • 2
  • 15
-1
votes
1 answer

Am I able to use an external RFID reader USB-C

does someone have experience with external devices or especially with Rfid readers? I ordered an external one and still couldn't test because I cannot connect it to my tablet (I would need an USB-A to USB-C converter) but it is necessary for me to…
Ifloop
  • 129
  • 11
-1
votes
2 answers

When pressed a button it stuck in while infinite loop

For my project i am trying to, get the RFID scanner to run all the time by pressing a button and reasing it when stop button is pressed, however i have tried to in a while loop but the problem seems like, when i press the button code everything…
-1
votes
1 answer

How can I receive multiple messages on UART?

I have an RDM6300 RFID writer/reader. It can read RFID Tags and it sends the data via UART to a microcontroller. So far I worked with multiple Microcontrollers from which ones the STM32F04 had the most UART "ports" (8 transmitters and receivers).…
szilard1996
  • 47
  • 2
  • 6
-1
votes
1 answer

What options are there for reading passive RFID tags up to 1 meter with an app?

I have heard that you can use NFC but supposedly that only works up to 4cm - I need 1 meter. Do I need an RFID reader board, an RFID antennae and an Arduino board to glue the reader board and the antennae together? What's the easiest approach?
Ryan
  • 5,883
  • 13
  • 56
  • 93
-1
votes
1 answer

An app for RFID card UID emulation?

Is there an simple app that would allow Android phone with NFC capability to emulate a ISO 14443 card's UID (10 digit identifier)? Ī'm working on a small project that uses simple authentication via RFID card (only uses UID, none of the advanced…
Artanis
  • 965
  • 1
  • 7
  • 25
-1
votes
1 answer

Can we edit the EPC of UHF tag to a URL ?

Can we set EPC of the UHF tag from E282XXXX..., to some URL link? Like https://www.google.com?? Is this possible?? I know that we can edit NFC tag by giving url in the NDEF data with NXP tag writer app. I wanted to do the same with UHF tags as…
DevT
  • 125
  • 1
  • 1
  • 7
-1
votes
1 answer

Making an error message for the repeating in or out if loops in the database table

Good Day, to make things clear I will introduce my ongoing system which is "Gate attendance for student in our university", this system is consists of RFID reader RC522 and Arduino, the student should tap his/her RFID tag and the data retrieved…
Nathan West
  • 165
  • 1
  • 2
  • 10
-1
votes
1 answer

Handle a RFID from Delphi Application R/W

I need to read/write cards using a RFID Reader more specifically this: https://www.parallax.com/product/28440 I am not very clear about how to do this since it is my first time with hardware devices connected to the USB port. I find out there is a…
-1
votes
1 answer

MIFARE DESFire EV1 authentication and MAC

When sending the FormatPICC command to a MIFARE DESFire EV1 card, I observe the following behavior: PCD ---> PICC -------------- 0xFC ---> <--- 0x00 or 0x00 + MAC or ERROR CODE If authenticated with the command 0x0A (legacy…
-1
votes
1 answer

Getting noice before the right byte comes SPI RFID

I try to read byte from RFID which represents version number of the device. Using SPI protocol I get 0x92 byte (RC522 Version 2.0), and request byte is 0x37. Everything works well except the positions of the byte. Before I get the right one (0x92)…
Giorgi Gvimradze
  • 1,714
  • 1
  • 17
  • 34
-1
votes
1 answer

Arduino/C++ IF/ELSE statements

[Later Edit] I have a Arduino Uno together with an RFID-RC522, a servo motor and some LED's + I also made a aluminium foil sandwich/switch. Here is the code BEFORE THE ALUMINIUM SWITCH, with everything working perfect: #include #include…
-1
votes
2 answers

Handling RFID time response functions in C

I'm developing an embedded app, written in C, using a M16C/28 uC from Renesas. The app manages two simple task: RFID for detection and reading MIFARE tags. ( Using HW: Mf500 from NXP ). The uC handles whole FW implementation. To deal with a RS485…
GenGen
  • 1
-1
votes
1 answer

Beam pattern of STA IR0507E Middle-Range RFID Reader

I would like to know the beam pattern formed by the STA IR0507E Middle-Range RFID Reader if anyone knows. I have been trying to figure out if the signal is transmitted in a linear fashion or circular pattern. I have placed my reader in a closed…
Matin
  • 131
  • 10
-1
votes
1 answer

How to use thred to let Server communicate with client

We use the rfid reader and mysql database to create a system can let me use my mifare card to pass the door lock system, because we already build an UI, we need to let the server sending message back to client ex."You pass the door" somthing like…