├── README.md ├── RPi_Cam_Web_Interface_Installer.sh ├── bin └── raspimjpeg ├── etc ├── apache2 │ ├── conf.d │ │ └── other-vhosts-access-log │ └── sites-available │ │ └── default.1 ├── motion │ └── motion.conf.1 ├── raspimjpeg │ └── raspimjpeg.1 ├── rc_local_run │ └── rc.local.1 └── sudoers.d │ └── RPI_Cam_Web_Interface ├── pic.jpg ├── pic2.jpg ├── www-src ├── .gitignore ├── Gruntfile.js ├── grunt │ ├── copy.js │ ├── less.js │ ├── uglify.js │ └── watch.js ├── less │ └── app.less └── package.json └── www ├── Copyright.txt ├── cam_pic.php ├── cam_pic_new.php ├── cmd_func.php ├── cmd_pipe.php ├── config.php ├── control-child.php ├── convertCmd.txt ├── css ├── es_Default.css ├── es_Night.css ├── extrastyle.txt ├── preview.css └── style_minified.css ├── delete.png ├── down.jpg ├── down.sh ├── download.php ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── image.png ├── index.php ├── index.php.bak ├── js ├── pipan.js ├── script.js └── style_minified.js ├── left.jpg ├── left.sh ├── loading.jpg ├── macros └── test.sh ├── motion.php ├── pilight_off ├── pipan.php ├── pipan_off ├── preview.php ├── raspimjpeg ├── raspizip.sh ├── right.jpg ├── right.sh ├── schedule.php ├── scheduleLog.txt ├── status_mjpeg.php ├── status_mjpeg.txt ├── timelapse.png ├── uconfig ├── unavailable.jpg ├── up.jpg ├── up.sh ├── updating.jpg ├── vars ├── x └── y ├── video.png └── webcam.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/README.md -------------------------------------------------------------------------------- /RPi_Cam_Web_Interface_Installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/RPi_Cam_Web_Interface_Installer.sh -------------------------------------------------------------------------------- /bin/raspimjpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/bin/raspimjpeg -------------------------------------------------------------------------------- /etc/apache2/conf.d/other-vhosts-access-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/etc/apache2/conf.d/other-vhosts-access-log -------------------------------------------------------------------------------- /etc/apache2/sites-available/default.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/etc/apache2/sites-available/default.1 -------------------------------------------------------------------------------- /etc/motion/motion.conf.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/etc/motion/motion.conf.1 -------------------------------------------------------------------------------- /etc/raspimjpeg/raspimjpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/etc/raspimjpeg/raspimjpeg.1 -------------------------------------------------------------------------------- /etc/rc_local_run/rc.local.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/etc/rc_local_run/rc.local.1 -------------------------------------------------------------------------------- /etc/sudoers.d/RPI_Cam_Web_Interface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/etc/sudoers.d/RPI_Cam_Web_Interface -------------------------------------------------------------------------------- /pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/pic.jpg -------------------------------------------------------------------------------- /pic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/pic2.jpg -------------------------------------------------------------------------------- /www-src/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /www-src/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www-src/Gruntfile.js -------------------------------------------------------------------------------- /www-src/grunt/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www-src/grunt/copy.js -------------------------------------------------------------------------------- /www-src/grunt/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www-src/grunt/less.js -------------------------------------------------------------------------------- /www-src/grunt/uglify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www-src/grunt/uglify.js -------------------------------------------------------------------------------- /www-src/grunt/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www-src/grunt/watch.js -------------------------------------------------------------------------------- /www-src/less/app.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www-src/less/app.less -------------------------------------------------------------------------------- /www-src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www-src/package.json -------------------------------------------------------------------------------- /www/Copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/Copyright.txt -------------------------------------------------------------------------------- /www/cam_pic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/cam_pic.php -------------------------------------------------------------------------------- /www/cam_pic_new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/cam_pic_new.php -------------------------------------------------------------------------------- /www/cmd_func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/cmd_func.php -------------------------------------------------------------------------------- /www/cmd_pipe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/cmd_pipe.php -------------------------------------------------------------------------------- /www/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/config.php -------------------------------------------------------------------------------- /www/control-child.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/control-child.php -------------------------------------------------------------------------------- /www/convertCmd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/convertCmd.txt -------------------------------------------------------------------------------- /www/css/es_Default.css: -------------------------------------------------------------------------------- 1 | /*! default extra styles no changes */ 2 | -------------------------------------------------------------------------------- /www/css/es_Night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/css/es_Night.css -------------------------------------------------------------------------------- /www/css/extrastyle.txt: -------------------------------------------------------------------------------- 1 | es_Default.css -------------------------------------------------------------------------------- /www/css/preview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/css/preview.css -------------------------------------------------------------------------------- /www/css/style_minified.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/css/style_minified.css -------------------------------------------------------------------------------- /www/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/delete.png -------------------------------------------------------------------------------- /www/down.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/down.jpg -------------------------------------------------------------------------------- /www/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/down.sh -------------------------------------------------------------------------------- /www/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/download.php -------------------------------------------------------------------------------- /www/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /www/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /www/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /www/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /www/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /www/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/image.png -------------------------------------------------------------------------------- /www/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/index.php -------------------------------------------------------------------------------- /www/index.php.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/index.php.bak -------------------------------------------------------------------------------- /www/js/pipan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/js/pipan.js -------------------------------------------------------------------------------- /www/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/js/script.js -------------------------------------------------------------------------------- /www/js/style_minified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/js/style_minified.js -------------------------------------------------------------------------------- /www/left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/left.jpg -------------------------------------------------------------------------------- /www/left.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/left.sh -------------------------------------------------------------------------------- /www/loading.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/loading.jpg -------------------------------------------------------------------------------- /www/macros/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | date >/var/www/testmacro.txt 3 | -------------------------------------------------------------------------------- /www/motion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/motion.php -------------------------------------------------------------------------------- /www/pilight_off: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /www/pipan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/pipan.php -------------------------------------------------------------------------------- /www/pipan_off: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /www/preview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/preview.php -------------------------------------------------------------------------------- /www/raspimjpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/raspimjpeg -------------------------------------------------------------------------------- /www/raspizip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/raspizip.sh -------------------------------------------------------------------------------- /www/right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/right.jpg -------------------------------------------------------------------------------- /www/right.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/right.sh -------------------------------------------------------------------------------- /www/schedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/schedule.php -------------------------------------------------------------------------------- /www/scheduleLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/scheduleLog.txt -------------------------------------------------------------------------------- /www/status_mjpeg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/status_mjpeg.php -------------------------------------------------------------------------------- /www/status_mjpeg.txt: -------------------------------------------------------------------------------- 1 | ready -------------------------------------------------------------------------------- /www/timelapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/timelapse.png -------------------------------------------------------------------------------- /www/uconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/unavailable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/unavailable.jpg -------------------------------------------------------------------------------- /www/up.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/up.jpg -------------------------------------------------------------------------------- /www/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/up.sh -------------------------------------------------------------------------------- /www/updating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/updating.jpg -------------------------------------------------------------------------------- /www/vars/x: -------------------------------------------------------------------------------- 1 | 193 2 | -------------------------------------------------------------------------------- /www/vars/y: -------------------------------------------------------------------------------- 1 | 109 2 | -------------------------------------------------------------------------------- /www/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/video.png -------------------------------------------------------------------------------- /www/webcam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalad/RPi_Cam_Web_Interface_ServoBlaster_pan_tilt/HEAD/www/webcam.php --------------------------------------------------------------------------------