├── .DS_Store ├── LICENSE ├── README.md ├── camera.py ├── face-detection-example ├── camera.py ├── haarcascade_frontalface_alt2.xml └── main.py ├── main.py ├── readme ├── .DS_Store ├── pi-door-bell-setup.jpg ├── pi-doorlock-motor.jpg └── pi-stream-face-detection.jpg ├── servo.py └── templates └── index.html /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EbenKouao/Pi-Smart-Doorbell/HEAD/.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EbenKouao/Pi-Smart-Doorbell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EbenKouao/Pi-Smart-Doorbell/HEAD/README.md -------------------------------------------------------------------------------- /camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EbenKouao/Pi-Smart-Doorbell/HEAD/camera.py -------------------------------------------------------------------------------- /face-detection-example/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EbenKouao/Pi-Smart-Doorbell/HEAD/face-detection-example/camera.py -------------------------------------------------------------------------------- /face-detection-example/haarcascade_frontalface_alt2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EbenKouao/Pi-Smart-Doorbell/HEAD/face-detection-example/haarcascade_frontalface_alt2.xml -------------------------------------------------------------------------------- /face-detection-example/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EbenKouao/Pi-Smart-Doorbell/HEAD/face-detection-example/main.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EbenKouao/Pi-Smart-Doorbell/HEAD/main.py -------------------------------------------------------------------------------- /readme/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EbenKouao/Pi-Smart-Doorbell/HEAD/readme/.DS_Store -------------------------------------------------------------------------------- /readme/pi-door-bell-setup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EbenKouao/Pi-Smart-Doorbell/HEAD/readme/pi-door-bell-setup.jpg -------------------------------------------------------------------------------- /readme/pi-doorlock-motor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EbenKouao/Pi-Smart-Doorbell/HEAD/readme/pi-doorlock-motor.jpg -------------------------------------------------------------------------------- /readme/pi-stream-face-detection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EbenKouao/Pi-Smart-Doorbell/HEAD/readme/pi-stream-face-detection.jpg -------------------------------------------------------------------------------- /servo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EbenKouao/Pi-Smart-Doorbell/HEAD/servo.py -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EbenKouao/Pi-Smart-Doorbell/HEAD/templates/index.html --------------------------------------------------------------------------------