The UHF RFID FM-505, manufactured by Fonkan (Part ID: RFID), is a high-frequency RFID module designed for wireless identification and tracking. Operating in the UHF band, this module is widely used in various applications such as inventory management, asset tracking, access control, and supply chain logistics. Its robust performance and ease of integration make it a popular choice for both hobbyists and professionals.
Parameter | Value |
---|---|
Operating Frequency | 860-960 MHz |
Output Power | 0-30 dBm (adjustable) |
Communication Interface | UART, RS232, RS485 |
Power Supply | 3.3V - 5V DC |
Current Consumption | < 200mA |
Reading Distance | Up to 10 meters (depending on tag and environment) |
Antenna | External (SMA connector) |
Dimensions | 60mm x 40mm x 5mm |
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | Power Supply (3.3V - 5V DC) |
2 | GND | Ground |
3 | TX | UART Transmit |
4 | RX | UART Receive |
5 | RS232_TX | RS232 Transmit |
6 | RS232_RX | RS232 Receive |
7 | RS485_A | RS485 Data Line A |
8 | RS485_B | RS485 Data Line B |
9 | ANT | Antenna Connector (SMA) |
#include <SoftwareSerial.h>
// Define the pins for SoftwareSerial
SoftwareSerial rfidSerial(10, 11); // RX, TX
void setup() {
// Initialize hardware serial for debugging
Serial.begin(9600);
// Initialize software serial for RFID module
rfidSerial.begin(9600);
Serial.println("RFID Module Initialized");
}
void loop() {
// Check if data is available from the RFID module
if (rfidSerial.available()) {
// Read the data from the RFID module
String rfidData = rfidSerial.readString();
// Print the RFID data to the serial monitor
Serial.println("RFID Tag Detected: " + rfidData);
}
}
No Response from the Module:
Short Reading Distance:
Data Corruption:
Q1: What is the maximum reading distance of the FM-505?
Q2: Can I use the FM-505 with a 3.3V power supply?
Q3: How do I change the output power of the FM-505?
Q4: What type of antenna should I use with the FM-505?
By following this documentation, users can effectively integrate and utilize the UHF RFID FM-505 module in their projects, ensuring optimal performance and reliability.