

The UHF RFID IN-R200 is a high-performance RFID reader designed for long-range identification and tracking of RFID tags. Operating in the UHF frequency range, it offers fast read rates and the ability to read multiple tags simultaneously. This makes it an excellent choice for applications such as inventory management, asset tracking, and access control. Its robust design and advanced features ensure reliable performance in demanding environments.








| Parameter | Specification |
|---|---|
| Operating Frequency | 860 MHz – 960 MHz (UHF band) |
| Communication Protocol | EPCglobal Class 1 Gen 2 / ISO 18000-6C |
| Read Range | Up to 10 meters (depending on tag type) |
| Antenna Ports | 4 SMA connectors |
| Power Supply | 12V DC, 3A |
| Communication Interface | RS232, RS485, Ethernet, USB |
| Operating Temperature | -20°C to +55°C |
| Dimensions | 250 mm x 200 mm x 50 mm |
| Weight | 1.5 kg |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | VCC | 12V DC power input |
| 2 | GND | Ground |
| 3 | TX (RS232) | Transmit data (RS232 interface) |
| 4 | RX (RS232) | Receive data (RS232 interface) |
| 5 | RS485+ | RS485 positive line |
| 6 | RS485- | RS485 negative line |
| 7 | Ethernet TX+ | Ethernet transmit positive |
| 8 | Ethernet TX- | Ethernet transmit negative |
| 9 | Ethernet RX+ | Ethernet receive positive |
| 10 | Ethernet RX- | Ethernet receive negative |
The UHF RFID IN-R200 can be connected to an Arduino UNO using the RS232 interface. Below is an example code snippet to read tag data:
#include <SoftwareSerial.h>
// Define RX and TX pins for RS232 communication
SoftwareSerial RFID(10, 11); // RX = pin 10, TX = pin 11
void setup() {
Serial.begin(9600); // Initialize Serial Monitor
RFID.begin(9600); // Initialize RFID reader communication
Serial.println("UHF RFID IN-R200 Reader Initialized");
}
void loop() {
if (RFID.available()) { // Check if data is available from the reader
String tagData = ""; // Variable to store tag data
while (RFID.available()) {
char c = RFID.read(); // Read one character at a time
tagData += c; // Append character to tagData
}
Serial.print("Tag Detected: ");
Serial.println(tagData); // Print tag data to Serial Monitor
}
}
RFID.begin() value in the code.Reader Not Powering On
Tags Not Being Detected
Intermittent Communication
Multiple Tags Not Read Simultaneously
Q: Can the UHF RFID IN-R200 read tags through walls?
A: The reader's ability to read through walls depends on the material. Thin, non-metallic materials may allow signal penetration, but metal will block the signal.
Q: What is the maximum number of tags the reader can handle simultaneously?
A: The reader can handle up to 200 tags simultaneously, depending on tag density and environmental conditions.
Q: Is the reader compatible with Linux systems?
A: Yes, the UHF RFID IN-R200 supports Linux through its Ethernet or USB interface.
Q: How do I update the firmware?
A: Firmware updates can be performed via the USB interface using the manufacturer's update tool.
This concludes the documentation for the UHF RFID IN-R200. For further assistance, refer to the manufacturer's user manual or contact technical support.