A project that, using the 125kHz RFID scanner, SSD1306 OLED Display and an ESP32, creates an ID Scanner which logs the ID as well as the time it was scanned onto a HTML server hosted by the ESP as well as onto the OLED Display
| RFID Work Logger Project |
A detailed guide to this project can be found in the form of a blog post here
- 125kHz RFID tag reader board
- Display OLED I2C 0.96" SSD1306
- Dasduino CONNECTPLUS (ESP32)
- 125kHz RFID card
- A WiFi connection
- A Device capable of accessing a Web Browser
- If you haven't already, install Arduino IDE
- Download this repository and extract it
- Start the arduino sketch located in RFID_Work_Logger_Project/RFID_Work_Logger.ino
- Click on the Boards Manager icon on the left and search for esp32 by Espressif and install it
- In the Select other board or menu... dropdown menu pick the ESP32 Dev Module and the serial port it is connected to
- Install all of the libraries mentioned under Software requirements
- Fill out the following variables with your credentials:
// Wi-Fi credentials (set your SSID + password here)
const char* ssid = "YOUR_SSID_HERE";
const char* password = "YOUR_PASSWORD_HERE";
// Time servers and timezone
const char* ntpServer1 = "pool.ntp.org";
const char* ntpServer2 = "time.nist.gov";
const char* tz = "CET-1CEST,M3.5.0,M10.5.0/3"; // use your timezone- Run the sketch
- After the code is uploaded and the RFID scanner as well as the OLED Display are initialized, the display will show the IP address of the server which hosts the logging data
- Open that IP address in your web browser (while connected to the same network as the ESP32 board) and you will be able to see the ID of the card scanned as well as the time stamp when it happened
At Soldered, we design and manufacture a wide selection of electronic products to help you turn your ideas into acts and bring you one step closer to your final project. Our products are intented for makers and crafted in-house by our experienced team in Osijek, Croatia. We believe that sharing is a crucial element for improvement and innovation, and we work hard to stay connected with all our makers regardless of their skill or experience level. Therefore, all our products are open-source. Finally, we always have your back. If you face any problem concerning either your shopping experience or your electronics project, our team will help you deal with it, offering efficient customer service and cost-free technical support anytime. Some of those might be useful for you:
Soldered invests vast amounts of time into hardware & software for these products, which are all open-source. Please support future development by buying one of our products.
This repository is under the MIT license, for more info, see LICENSE. Long story short, use these open-source files for any purpose you want to, as long as you apply the same open-source licence to it and disclose the original source. No warranty - all designs in this repository are distributed in the hope that they will be useful, but without any warranty. They are provided "AS IS", therefore without warranty of any kind, either expressed or implied. The entire quality and performance of what you do with the contents of this repository are your responsibility. In no event, Soldered (TAVU) will be liable for your damages, losses, including any general, special, incidental or consequential damage arising out of the use or inability to use the contents of this repository.
And thank you from your fellow makers at Soldered Electronics.
