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

Is this RFID card? How to write and read data to this card?

I've been tasked to write and read data to this card. Vendor gave me Intelligent Tablet Payment Terminal i9300 and expect to write and read data to this card below. Intelligent Tablet Payment Terminal i9300 is Android based. It comes with its own…
Azlan Jamal
  • 2,660
  • 3
  • 22
  • 29
-2
votes
1 answer

RFID Reader - Nordic ID Stix

I have a device called 'Nordic ID Stix'. But i dont really know how can i read from it! Of course first i try using System.IO.Ports.SerialPort but it dont work. (I cant start reading when antenna is turn off... ) Device is working and read rfid (i…
KondzioSSJ4
  • 220
  • 4
  • 12
-2
votes
1 answer

Any idea what's wrong with my code on python?

ihave this code import serial import time import datetime import MySQLdb as mdb localtime = time.localtime(time.time()) port = serial.Serial("/dev/ttyUSB0", baudrate=9600) count = 0 nomor ='' start = '\x02' stop = '\x03' def mulai(): print…
-2
votes
1 answer

Rfid tags distance calculate with android

Is there any android app that can read rfid tags and locate it? How distance it works? I know android can read nfc tags for around 10 cm
Sajad
  • 1
  • 1
-2
votes
1 answer

Smart Card Encoder using C# code

I'm new to this device, I only tried RFID Mifare RC522 and read its serial ID This time I'm trying to read the serial ID of RFID card using this Smart Card Encoder (LA118-M1) using C# coding in MS Visual Studio. What class library should I…
See Yah Later
  • 97
  • 2
  • 10
-2
votes
1 answer

tcpClient Connecting Remote host freezes application

I'm quite new working with sockets and I'm trying to get data from a RFID equipment that has a raw streaming on port 1000. Found this code and I got this working on a console application with this code TcpClient tcpClient; NetworkStream…
-2
votes
1 answer

Android phone cannot recognize SRIX4K tags

I have some NFC tags (ST cardpro ISO 14443 use chip SRIX4K) and some devices with NFC support (LG GPro, Samsung Galaxy Note 2). I tried using a writer app to read/write info on tag by phone but both phones can not recognize those tags. I tried to…
Unoken Mouny
  • 157
  • 1
  • 3
  • 14
-2
votes
1 answer

How to begin working with RFID Reader?

I want to write the program that manages the parking (Smart Parking). I have just bought a RFID Reader, but I don't know how to begin with it. Someone can tell me how to programming by using C++/C# to interact with this RFID Reader. Many…
TTGroup
  • 3,575
  • 10
  • 47
  • 79
-2
votes
2 answers

Converting Hex To dec in python

I am trying to convert this RFID Tag number got from this code; import serial ser = serial.Serial() ser.port = "COM1" ser.baudrate = 9600 ser.timeout = 3 ser.open() if ser.open is True: print "Port Not open" while ser.isOpen(): …
-2
votes
2 answers

Wireless Actice-RFID tag by Savi Echo Point

I have a windows form application (compact framework 3.5) that runs on a mobile scanner device. The scanner has an RFID reread card on it (not sure which one yet) and I will need to connect to RFID tag by Savis-EchoPoint (ST-656 and ST-654) for…
-2
votes
1 answer

Rfid 14443a standards

I need 14443a rfid standarts commands. like read and write. I find the read command which is 0109000304A0010000. I need write command for this. thanks best regards.
AykutE
  • 36
  • 5
-3
votes
1 answer

How to work with 'NEX 530 NFC RFID' reader in C#?

I have to use 'NEX 530 NFC RFID' reader in a C# windows application. The Nex-530 desktop reader is a Mifare ISO14443A, B or ISO15693 read/write device with a typical operating distance of 50‐100mm. The SDK and sample codes are in C language and I…
Mrjm
  • 121
  • 2
  • 10
-3
votes
1 answer

Is there a way to embed a RFID scanner in a iOs App, built with react native app

I'm currently developing an app with react native. I would like to be able to scan RFID tags with that app. I've read that it's not possible for iOs, but the posts are quite old so maybe this has changed? Or does anybody know workarounds? Maybe with…
-3
votes
1 answer

Python on Raspberry Pi 3

I am trying to code a RFID access system that utilizes an actuator to turn on and off. I followed a simple tutorial that can be found here. I completed the tutorial fully and now have encountered problems: I noticed when following the tutorial, the…
-3
votes
1 answer

Read/Write to RFID

I have a RFID card reader device from unknown company. I'd like to read/write to it using any programming language. My question: is there a general way to read/write cards (using C# as example)? Do I need a specific driver/API for every…
khorshid
  • 59
  • 2
  • 10
1 2 3
87
88