├── .gitignore ├── Adafruit_I2C.py ├── Adafruit_PWM_Servo_Driver.py ├── LICENSE.txt ├── README.md ├── model.py ├── modeltests.py ├── server.py ├── servos.py ├── static ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── main.css │ └── normalize.min.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── js │ ├── calibration.js │ └── vendor │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.1.min.js │ ├── json2.js │ ├── modernizr-2.6.2.min.js │ └── raphael-min.js └── templates └── main.html /.gitignore: -------------------------------------------------------------------------------- 1 | calibration.json 2 | *.pyc -------------------------------------------------------------------------------- /Adafruit_I2C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/Adafruit_I2C.py -------------------------------------------------------------------------------- /Adafruit_PWM_Servo_Driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/Adafruit_PWM_Servo_Driver.py -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/README.md -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/model.py -------------------------------------------------------------------------------- /modeltests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/modeltests.py -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/server.py -------------------------------------------------------------------------------- /servos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/servos.py -------------------------------------------------------------------------------- /static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/css/normalize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/static/css/normalize.min.css -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/js/calibration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/static/js/calibration.js -------------------------------------------------------------------------------- /static/js/vendor/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/static/js/vendor/bootstrap.js -------------------------------------------------------------------------------- /static/js/vendor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/static/js/vendor/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/vendor/jquery-1.10.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/static/js/vendor/jquery-1.10.1.min.js -------------------------------------------------------------------------------- /static/js/vendor/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/static/js/vendor/json2.js -------------------------------------------------------------------------------- /static/js/vendor/modernizr-2.6.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/static/js/vendor/modernizr-2.6.2.min.js -------------------------------------------------------------------------------- /static/js/vendor/raphael-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/static/js/vendor/raphael-min.js -------------------------------------------------------------------------------- /templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdicola/pi-catlaser/HEAD/templates/main.html --------------------------------------------------------------------------------