https://github.com/mr-addict/door-lock-system
This NFC door lock system uses ESP32 and 28BYJ-48 stepper motors.
https://github.com/mr-addict/door-lock-system
Last synced: 10 months ago
JSON representation
This NFC door lock system uses ESP32 and 28BYJ-48 stepper motors.
- Host: GitHub
- URL: https://github.com/mr-addict/door-lock-system
- Owner: MR-Addict
- Created: 2021-04-04T12:24:19.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2023-10-24T07:24:43.000Z (over 2 years ago)
- Last Synced: 2025-04-08T07:36:03.661Z (about 1 year ago)
- Language: C++
- Homepage:
- Size: 3.07 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Door-lock-system
This NFC door lock system uses ESP32 and 28BYJ-48 stepper motors.
## 1. Add a new card
You can use `RFID_READ.ino` file to read a new card, the formate should be like this `{0xF1, 0x41, 0x01, 0x5F}`.
Then add new card to `RFID.ino` file.
```cpp
const uint8_t UID[][4] = {
{0xF1, 0x41, 0x01, 0x5F},
};
```
## 2. Access RFID
In order to make this system more efficent, I add a sensor to interrupt MCU. So you may need to touch the sensor first.
Besides RFID card access, you can also use web UI by [http://unlockdoor-507](http://unlockdoor-507) if you connect the same router.
You need to login in first, the default username is `admin`, default password is `stas`.
Login page

Home page
