RFID USING BHARAT PI BOARD AND TRASMITE THE OUTPUT DATA TO BLYNL CLOUD
by tmvinay95 in Circuits > Wireless
15 Views, 0 Favorites, 0 Comments
RFID USING BHARAT PI BOARD AND TRASMITE THE OUTPUT DATA TO BLYNL CLOUD

RFID (Radio Frequency Identification) is a technology that uses electromagnetic fields to automatically identify and track tags attached to objects. These tags store data that can be read wirelessly using an RFID reader. Integrating RFID with the Bharat Pi board and Blynk Cloud opens up endless possibilities for creating IoT-enabled systems, such as attendance tracking, inventory management, and access control.
Supplies




- RFID Reader and Tags:
- Commonly used module: MFRC522 RFID reader.
- Tags are typically passive and operate at 13.56 MHz.
- Bharat Pi Board:
- Bharat Pi is a microcontroller board, similar to the Raspberry Pi Pico, designed for versatile IoT applications.
- It supports communication protocols like SPI, I2C, and UART, making it ideal for interfacing with RFID readers.
- Blynk Cloud:
- Blynk is a platform for building IoT applications.
- It provides a mobile and web-based interface to monitor and control devices.
- With Blynk, RFID data can be visualized or logged in real-time using widgets like virtual pins, buttons, and graphs.
Connection and Code

#define BLYNK_TEMPLATE_ID "TMPL37dE9XcXV"
#define BLYNK_TEMPLATE_NAME "rfidtag"
#define BLYNK_AUTH_TOKEN "4qtTjH9Cf513aQT0ZIXlboVyQjdUsIh5"
#include <SPI.h>
#include <MFRC522.h>
#include <WiFi.h>
#include <BlynkSimpleEsp32.h>
// Define pins for RFID
#define RST_PIN 27 // Reset pin
#define SS_PIN 14 // Slave select pin
MFRC522 rfid(SS_PIN, RST_PIN); // Create MFRC522 instance
// Wi-Fi credentials
const char* ssid = "Yogesh"; // Replace with your Wi-Fi SSID
const char* pass = "Yogi5244"; // Replace with your Wi-Fi password
// Debugging Blynk
#define BLYNK_PRINT Serial // Enable debugging messages for Blynk
void setup() {
// Initialize Serial Monitor
Serial.begin(115200);
while (!Serial) {}
Serial.println("Starting RFID and Blynk Test...");
// Initialize SPI
SPI.begin();
// Initialize MFRC522
rfid.PCD_Init();
delay(100);
// Check if the RFID module responds
Serial.println("Performing RFID self-test...");
if (rfid.PCD_PerformSelfTest()) {
Serial.println("RFID self-test passed. Module initialized successfully.");
} else {
Serial.println("RFID self-test failed. Check wiring and connections.");
while (true); // Halt if initialization fails
}
// Connect to Wi-Fi
Serial.println("Connecting to WiFi...");
WiFi.begin(ssid, pass);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("\nWi-Fi connected!");
Serial.print("IP Address: ");
Serial.println(WiFi.localIP());
// Connect to Blynk
Serial.println("Connecting to Blynk...");
Blynk.begin(BLYNK_AUTH_TOKEN, ssid, pass);
while (!Blynk.connected()) {
Serial.println("Blynk connection failed. Retrying...");
delay(1000);
}
Serial.println("Blynk connected successfully.");
}
void loop() {
Blynk.run(); // Keep Blynk connection alive
// Check for a new card
if (!rfid.PICC_IsNewCardPresent()) {
return; // No card detected
}
// Attempt to read the card's UID
if (!rfid.PICC_ReadCardSerial()) {
Serial.println("Failed to read card. Retrying...");
return;
}
// Convert UID to string
String uid = "";
for (byte i = 0; i < rfid.uid.size; i++) {
uid += String(rfid.uid.uidByte[i], HEX);
if (i < rfid.uid.size - 1) uid += ":";
}
uid.toUpperCase(); // Convert to uppercase for consistency
// Print UID to Serial Monitor
Serial.print("Card UID: ");
Serial.println(uid);
// Send UID to Blynk Virtual Pin V1
Blynk.virtualWrite(V1, uid);
Serial.println("Card UID sent to Blynk.");
// Halt communication with the card
rfid.PICC_HaltA();
rfid.PCD_StopCrypto1();
delay(1000); // Short delay for stability
}
How RFID Works Its Application and Importance
How RFID Works
- An RFID reader generates an electromagnetic field using its antenna.
- When a tag comes into this field, it draws power from it and transmits its unique ID (UID) to the reader.
- The reader processes this data and sends it to the Bharat Pi board over the SPI protocol.
- The Bharat Pi board further processes the data and sends it to Blynk Cloud using Wi-Fi, enabling remote monitoring and control.
Project Workflow
- Hardware Connections:
- Connect the MFRC522 RFID reader to the Bharat Pi board via the SPI interface:
- MOSI: Connect to the SPI MOSI pin on Bharat Pi.
- MISO: Connect to the SPI MISO pin on Bharat Pi.
- SCK: Connect to the SPI clock pin (SCK) on Bharat Pi.
- SS (CS): Connect to a GPIO pin (e.g., GPIO 5).
- RST: Connect to a GPIO pin (e.g., GPIO 17).
- Connect the Bharat Pi board to the internet using a Wi-Fi module or Ethernet.
- Software Integration:
- Use the MFRC522 library to read RFID tags and extract UIDs.
- Use the Blynk library to connect the Bharat Pi board to the Blynk Cloud.
- Cloud Communication:
- Send the RFID UID data to Blynk Cloud using virtual pins.
- Configure the Blynk app to display data in real-time using widgets like Label, Table, or Graph.
- IoT Features:
- Monitor RFID scans in real-time on the Blynk app.
- Trigger actions like opening a door or sending a notification when a specific RFID tag is detected.
- Log RFID data for analysis or attendance tracking.
Advantages
- Real-Time Monitoring:
- RFID data is sent to Blynk Cloud instantly, allowing real-time access via a smartphone or web dashboard.
- Scalable IoT Solution:
- Multiple Bharat Pi boards can be connected to Blynk Cloud, enabling a distributed RFID system.
- User-Friendly Interface:
- The Blynk app provides an easy-to-use GUI for visualizing and controlling RFID data.
- Cost-Effective:
- Using Bharat Pi and Blynk Cloud eliminates the need for expensive proprietary systems.
Applications
- Access Control Systems:
- Allow or deny entry based on authorized RFID tags.
- Attendance Systems:
- Log the presence of employees or students by scanning their RFID tags.
- Inventory Management:
- Track items in a warehouse or store using RFID tags and visualize inventory data on Blynk Cloud.
- Smart Home Automation:
- Use RFID tags to trigger actions like turning on lights or opening garage doors.
Conclusion
By integrating RFID technology with the Bharat Pi board and Blynk Cloud, you can create a powerful and flexible IoT-enabled system. This combination leverages the simplicity of the Bharat Pi board and the cloud connectivity of Blynk to make RFID systems smarter, more accessible, and more efficient. With real-time monitoring, data logging, and remote control capabilities, this setup is ideal for modern IoT applications.
MFRC522 RFID to ESP32 Pin Mapping
RFID PinESP32 Pin
VCC - 3.3V or 5V (depending on your RFID module)
GND -GND
RST-GPIO 5
SDA (SS)- GPIO 4
MOSI- GPIO 23
MISO-GPIO 19
SCK-GPIO 18