├── .gitmodules ├── AccessControl ├── AccessControl.ino └── Leds.ino ├── CHANGELOG.md ├── DeleteLostTag └── DeleteLostTag.ino ├── EEPROM ├── EEPROM.ino └── README.md ├── LCD └── LCD.ino ├── LICENSE ├── NoSerial ├── Leds.ino └── NoSerial.ino ├── README.md ├── SD ├── AccessControl.ino ├── Leds.ino ├── Menu.ino ├── Pinning.h ├── RFID.ino └── Settings.h └── SD_v2 ├── Makefile_Build ├── Makefile ├── README.md ├── UNLICENSE ├── acces_control.ino ├── inc │ ├── LCD_module.h │ ├── RFID_module.h │ ├── RTC_module.h │ ├── authorized_keys.h │ └── pin_layout.h └── src │ ├── LCD_module.cpp │ ├── RFID_module.cpp │ └── RTC_module.cpp ├── README.md └── access_control ├── HOW_TO_USE.txt ├── LCD_module.cpp ├── LCD_module.h ├── README.md ├── RFID_module.cpp ├── RFID_module.h ├── RTC_module.cpp ├── RTC_module.h ├── UNLICENSE ├── access_control.ino ├── authorized_keys.h ├── pin_layout.h └── platform.local.txt /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/.gitmodules -------------------------------------------------------------------------------- /AccessControl/AccessControl.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/AccessControl/AccessControl.ino -------------------------------------------------------------------------------- /AccessControl/Leds.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/AccessControl/Leds.ino -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DeleteLostTag/DeleteLostTag.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/DeleteLostTag/DeleteLostTag.ino -------------------------------------------------------------------------------- /EEPROM/EEPROM.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/EEPROM/EEPROM.ino -------------------------------------------------------------------------------- /EEPROM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/EEPROM/README.md -------------------------------------------------------------------------------- /LCD/LCD.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/LCD/LCD.ino -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/LICENSE -------------------------------------------------------------------------------- /NoSerial/Leds.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/NoSerial/Leds.ino -------------------------------------------------------------------------------- /NoSerial/NoSerial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/NoSerial/NoSerial.ino -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/README.md -------------------------------------------------------------------------------- /SD/AccessControl.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD/AccessControl.ino -------------------------------------------------------------------------------- /SD/Leds.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD/Leds.ino -------------------------------------------------------------------------------- /SD/Menu.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD/Menu.ino -------------------------------------------------------------------------------- /SD/Pinning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD/Pinning.h -------------------------------------------------------------------------------- /SD/RFID.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD/RFID.ino -------------------------------------------------------------------------------- /SD/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD/Settings.h -------------------------------------------------------------------------------- /SD_v2/Makefile_Build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/Makefile_Build/Makefile -------------------------------------------------------------------------------- /SD_v2/Makefile_Build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/Makefile_Build/README.md -------------------------------------------------------------------------------- /SD_v2/Makefile_Build/UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/Makefile_Build/UNLICENSE -------------------------------------------------------------------------------- /SD_v2/Makefile_Build/acces_control.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/Makefile_Build/acces_control.ino -------------------------------------------------------------------------------- /SD_v2/Makefile_Build/inc/LCD_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/Makefile_Build/inc/LCD_module.h -------------------------------------------------------------------------------- /SD_v2/Makefile_Build/inc/RFID_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/Makefile_Build/inc/RFID_module.h -------------------------------------------------------------------------------- /SD_v2/Makefile_Build/inc/RTC_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/Makefile_Build/inc/RTC_module.h -------------------------------------------------------------------------------- /SD_v2/Makefile_Build/inc/authorized_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/Makefile_Build/inc/authorized_keys.h -------------------------------------------------------------------------------- /SD_v2/Makefile_Build/inc/pin_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/Makefile_Build/inc/pin_layout.h -------------------------------------------------------------------------------- /SD_v2/Makefile_Build/src/LCD_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/Makefile_Build/src/LCD_module.cpp -------------------------------------------------------------------------------- /SD_v2/Makefile_Build/src/RFID_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/Makefile_Build/src/RFID_module.cpp -------------------------------------------------------------------------------- /SD_v2/Makefile_Build/src/RTC_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/Makefile_Build/src/RTC_module.cpp -------------------------------------------------------------------------------- /SD_v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/README.md -------------------------------------------------------------------------------- /SD_v2/access_control/HOW_TO_USE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/access_control/HOW_TO_USE.txt -------------------------------------------------------------------------------- /SD_v2/access_control/LCD_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/access_control/LCD_module.cpp -------------------------------------------------------------------------------- /SD_v2/access_control/LCD_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/access_control/LCD_module.h -------------------------------------------------------------------------------- /SD_v2/access_control/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/access_control/README.md -------------------------------------------------------------------------------- /SD_v2/access_control/RFID_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/access_control/RFID_module.cpp -------------------------------------------------------------------------------- /SD_v2/access_control/RFID_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/access_control/RFID_module.h -------------------------------------------------------------------------------- /SD_v2/access_control/RTC_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/access_control/RTC_module.cpp -------------------------------------------------------------------------------- /SD_v2/access_control/RTC_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/access_control/RTC_module.h -------------------------------------------------------------------------------- /SD_v2/access_control/UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/access_control/UNLICENSE -------------------------------------------------------------------------------- /SD_v2/access_control/access_control.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/access_control/access_control.ino -------------------------------------------------------------------------------- /SD_v2/access_control/authorized_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/access_control/authorized_keys.h -------------------------------------------------------------------------------- /SD_v2/access_control/pin_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/access_control/pin_layout.h -------------------------------------------------------------------------------- /SD_v2/access_control/platform.local.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omersiar/RFID522-Door-Unlock/HEAD/SD_v2/access_control/platform.local.txt --------------------------------------------------------------------------------