├── .gitignore ├── .startscript.sh ├── License.md ├── Motion Detector Camera with ePIR (discontinued part).fzz ├── Motion Detector Camera.fzz ├── README.md ├── Raspberry Pi Costing.xls ├── __make_executable ├── _showproc ├── doorbell2.ogg ├── install_python_linphone.sh ├── jampi.png ├── jampi.svg ├── security_camera.py └── security_off /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelandg/Raspberry-Pi-Security-Camera/HEAD/.gitignore -------------------------------------------------------------------------------- /.startscript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelandg/Raspberry-Pi-Security-Camera/HEAD/.startscript.sh -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelandg/Raspberry-Pi-Security-Camera/HEAD/License.md -------------------------------------------------------------------------------- /Motion Detector Camera with ePIR (discontinued part).fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelandg/Raspberry-Pi-Security-Camera/HEAD/Motion Detector Camera with ePIR (discontinued part).fzz -------------------------------------------------------------------------------- /Motion Detector Camera.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelandg/Raspberry-Pi-Security-Camera/HEAD/Motion Detector Camera.fzz -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelandg/Raspberry-Pi-Security-Camera/HEAD/README.md -------------------------------------------------------------------------------- /Raspberry Pi Costing.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelandg/Raspberry-Pi-Security-Camera/HEAD/Raspberry Pi Costing.xls -------------------------------------------------------------------------------- /__make_executable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelandg/Raspberry-Pi-Security-Camera/HEAD/__make_executable -------------------------------------------------------------------------------- /_showproc: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sudo ps aux | grep 'python security_camera.py' 3 | -------------------------------------------------------------------------------- /doorbell2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelandg/Raspberry-Pi-Security-Camera/HEAD/doorbell2.ogg -------------------------------------------------------------------------------- /install_python_linphone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelandg/Raspberry-Pi-Security-Camera/HEAD/install_python_linphone.sh -------------------------------------------------------------------------------- /jampi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelandg/Raspberry-Pi-Security-Camera/HEAD/jampi.png -------------------------------------------------------------------------------- /jampi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelandg/Raspberry-Pi-Security-Camera/HEAD/jampi.svg -------------------------------------------------------------------------------- /security_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelandg/Raspberry-Pi-Security-Camera/HEAD/security_camera.py -------------------------------------------------------------------------------- /security_off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lelandg/Raspberry-Pi-Security-Camera/HEAD/security_off --------------------------------------------------------------------------------