Hi, I have an arduino project, but I need help with where I can not
For the following rfid locked door project
I want 1 access every 2 hours for each card
How can I do that?
Thanks Everyone!
rfid.ino (14.2 KB)
Hi, I have an arduino project, but I need help with where I can not
For the following rfid locked door project
I want 1 access every 2 hours for each card
How can I do that?
Thanks Everyone!
rfid.ino (14.2 KB)
You will need to either incorporate RTC shield if it has to be specific to the date/day.
Also want to create some variables that store the number of successful access requests were made and just check those variables everytime a attempt is made, something as simple as a INT variable that increments to 1 and if variable > 0 then dont allow.
Or as fancy as storing the time in a variable and then do some calculations next attempt to see if its been longer than an hour.