From caf67054fa5ca1212adc15532326a1d3b6907852 Mon Sep 17 00:00:00 2001 From: ImplFerris Date: Sun, 19 Jan 2025 22:54:09 +0530 Subject: [PATCH] project ideas for rfid --- src/SUMMARY.md | 2 +- src/rfid/project-ideas.md | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 src/rfid/project-ideas.md diff --git a/src/SUMMARY.md b/src/SUMMARY.md index 9d87c3a..bf8f61d 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -96,5 +96,5 @@ - [AccessBits Calc](./rfid/access-bits-calculator.md) - [Write Data](./rfid/write-data.md) - [Change Auth Key](./rfid/change-auth-key.md) - + - [Project Ideas](./rfid/project-ideas.md) - [Projects](./projects.md) diff --git a/src/rfid/project-ideas.md b/src/rfid/project-ideas.md new file mode 100644 index 0000000..b3261d1 --- /dev/null +++ b/src/rfid/project-ideas.md @@ -0,0 +1,36 @@ +# Project Ideas + +## 1. Access Control with RFID and OLED + +Build an access control system that displays "Access Granted" or "Access Denied" on an OLED display when RFID tags are scanned. Optionally, add a buzzer to provide audio feedback based on the access status. + +### Components +- MFRC522 (RFID reader module) & RFID Tags/Cards +- 0.96-inch OLED Display (I2C interface) +- \[Optional\] Buzzer (for audio feedback) +- Power Supply (e.g., 5V adapter or battery) + +### Related resources to learn +- [OLED Display](../oled/index.md) +- [Buzzer](../buzzer/index.md) + +### Showcase +If you create a project based on this idea, feel free to send a pull request with your project link, and we'll feature it here! + +## 2. Automatic Garage door using RFID + +I found an interesting video that demonstrates an automatic garage door system using RFID with Arduino. You can replicate this project using an ESP32 and Rust. [Watch the video here](https://www.youtube.com/watch?v=ICnYGbvkrpo). + +### Components +- MFRC522 (RFID reader module) & RFID Tags/Cards +- Servo motor +- \[Optional\] Buzzer (optional, for audio feedback) +- Power Supply (e.g., 5V adapter or battery) + + +### Related resources to learn +- [Servo motor](../servo/index.md) + + +### Showcase +If you create a project based on this idea, feel free to send a pull request with your project link, and we'll feature it here!