you could log accesses to your door on it.
Monitoring the kids

Did some RFID for acces control in the past:
- one time access
You allow an RFID code to open the door, keep a counter per code. if count > 0 => ERROR.
table looked like { RFID, MAX, COUNTER} MAX is MAXINT or so
- timed access
You allow the RFID code between certain times, this prevented access outside working hours...
This simple requirement created a complete hour registration system ...
simplistic version looks like { RFID, TIME1, TIME2 }