Manydoors Doorbot
ManyLabs has a collaborative DoorBot! No one owns it; we all manage it together, from this page.
Purpose: Record and share tap-in, tap-out actions of members (with a ISO 14443A keyfob/card) and document workspace usage.
Getting Started
- Get a keyfob or keycard (if you have one already, you can use it)
- Add your rfid number and name/alias to https://github.com/jhpoelen/manydoors/blob/master/ids.csv (ask for help if this is hard for you)
- Tap-in and Tap-out when entering and leaving ManyLabs by placing your keyfob on the inside/outside facing coils on the door.
- See your enter/exit actions on the Slack Channel
features
- use rfid to record entry/exit at the manylabs door.
- automatically updates ids from this github repo when new ones are available
- keeps a local event log on the pi
- posts a enter/exit events on the #door channel of manylabs slack
Code setup/ service maintenance
- Login to pi (ask for location and access credentials on Slack)
- clone github repo using
git clone https://github.com/jhpoelen/manydoors.git access_control
- create symlink to start service
sudo ln -s /home/pi/rfid/access_control/access_control.conf /etc/init/access_control.conf
- restart service using
sudo service access_control restart
- edit crontab for synching github repo
crontab -e
- add
* * * * * cd /home/pi/rfid/access_control && git pull --rebase