As the topic suggest i am trying to build a door access system that relies on RFID and a online/offline website, with a user database (website is already built btw).
This has previously been done by Arduino users but none exact as my "must have" list. I found a good guide a couple of years back but the link has gone away now.
My plan is to have a user to swipe a RFID-tag which would trigger the Arduino to get the RFID-tag ID and send it to a website of choice. This website will then do a quick check to see if the ID is granted access and it will also save a log of each event, sending some sort of message or http request back to the Arduino that would help me sort if this is a ok entry or not and would allow me to trigger a voltage output via the relay-chip for a few seconds of the electrical lock on the door.
My setup as for now:
Arduino Uno v3
RC522 RFID
Network Shield
Relay chip (for triggering voltage output to the door mechanism)
I am a total rookie with Arduino and have no experience in C, Java etc but i do have JavaScript, ASP (classic) and PHP history.
I am going to try and solve this by my self and hopefully with some help from this forum but if someone have experience in working with these types of functions i am willing to buy services (sometimes it's better to leave it in the hands of pros) so feel free to send me a message with a quote if you feel this is your game.
I have been successful in getting the network shield to go to a website and get a full html response back, it would need some tweaks when integrating with RFID code later on but at least something is working.
When i tried to connect the RFID-reader i went into some trouble. I have been following guides if wire setup as well as using the test codes found in GitHub - miguelbalboa/rfid: Arduino RFID Library for MFRC522
I do get a solid red light from the RFID-reader and the message from Arduino when running "Dumpinfo" from the examples is "Scan PICC to see UID and type..." which would implicate that all is running smooth.
However when i swipe/hold the RFID-tag in front of the reader i get no action at all, i have tested with one tag and one card (the once i got in the package).
So i would say that i am pretty much stuck here.
Any suggestion on how to get pass the RFID-reader situation?
Also if you have some feedback on my project feel free to comment on it.