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
1 answer

RFID based reading and writing in C

I have to make a RFID based attendance system where i have to write into the database once reading from the tag and finding out which student it is. I will using C# to build that RFID can anyone help me to find a tutorial how to make RFID with C ?
-1
votes
1 answer

C# Unable to add reference basic.dll

Hi guys im just new in C# i came from a PHP background. I'm working on a RFID project which has RRU1861CSharp.dll which is dependent to basic.dll. I am able to add reference RRU1861CSharp.dll but when i'm trying to add reference basic.dll it…
-1
votes
1 answer

Is there anything similar to NFC tags which i can use as far as few meters

I am just trying to bring some idea for that i need something similar to NFC which can communicate to my device just like NFC but should be able to communicate between few meters. I have seen several NFC tags but they just work at few centimeters…
-1
votes
2 answers

USB RFID reading tag using C# connected through serial port

I have manage to connect to my RFID devices through USB port with a console application using the code below using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net; using…
Ping
  • 103
  • 2
  • 3
  • 17
-1
votes
1 answer

Read multiple RFID readers into Excel

I use Excel to build a demo program for RFID readers. I want to have 3 readers (HID) feeding 3 different cells at the same time. The reader I'm using is pcProx made by RF Ideas. I connected them to USB ports on the Windows 7 PC running Office 10. I…
John Pitcher
  • 1
  • 1
  • 3
-1
votes
1 answer

Dectect motion with RFID without use of sensors

Does anyone know if the use of only one static active RFID tag are able to detect motion(eg. moving human or objects) by itself without any use of other extra tags or sensors?
ActiveUser
  • 39
  • 2
  • 5
-1
votes
1 answer

Logging in or out of an application using a RFID Reader

I would like to know is it possible to log in our out of an application that has "username" and "password" fields by using a RFID Reader? Facebook application for example. Thank you.
Pera
  • 11
  • 2
-1
votes
1 answer

range of RFID tag and scanning to receiver

What is the maximum range of active RFID tag and receiver today and how many RFID tags can be scanned through RFID reader at unit time ?
Bimal Sharma
  • 134
  • 14
-2
votes
1 answer

How to convert 1E00A84ACC to 11029196

I have tag of rfid is 0011029196 when i convert it to Hexadecimal it just 0A84ACC and lost 1E0 how i can convert it to 1E00A84ACC. p/s: tag 1E00A84ACC is read from serial com port i'm using window form with c# how i can code it. thanks
-2
votes
1 answer

Write UID on mifare 1k (ISO14443A, mifare classic 1K cards)

I recently bought a 13.56 mhz magic card with a writable UID. The card has the following specs ; I would like to clone my old card into the new one. I tried with the MCT app, and it seemed to be working, but when I scanned the card again, the UID…
BruceWawe
  • 31
  • 7
-2
votes
1 answer

How to break out of a While True loop in Python

I am reading cards in Python using an RFID Reader and I want to detect how long a card has been detected for in seconds, minutes and hours. The program begins to run once a card has been detected and starts the count but the problem is that the code…
-2
votes
1 answer

Is there anyway we could use the data from rfid to fetch something from another website?

I made this project for my final project which is reading data from RFID and sending this ID to web PHP using Nodemcu Ardino.I actually want to assign some data to this unique ID and once this ID is scanned, use that particular information to search…
-2
votes
2 answers

How to edit access bits conditon in read only sector - Mifare Classic Tag

I inserted in the tag some data but I was wrong in defining the access bits. To be more specific, the sector 3 now is a read only sector, is there a way to change them? I can't attach the image, [so here's the link][1] Thanks for help [1]:…
-2
votes
2 answers

How can i show x amount of digits in php?

i have this code tath cames form and RFID card ccffff10320d011899540002692a000002692ab7 i have a php system i need to show only the 14,15,16,17,18,19 digit (189954) is there a way of doing it? the 6 digit number al already store in my database so…
-2
votes
1 answer

Convert a MFRC522 arduino chip to an USB device

I'm tying to convert a MFRC522 arduino chip to an USB device so as to use it natively on windows (with a cli or software) and without an Arduino. I don't know if I was clear (sorry for my bad english). Can anyone help me to do this.