├── .gitignore ├── Photos ├── Google-dev-step1.PNG ├── Permission.png ├── google-dev-step3.PNG ├── google-dev-step4.PNG ├── google-dev-step5.PNG ├── google-dev-step6-download.PNG ├── logo.svg └── paste-code.png ├── README.md ├── arduino ├── ButtonSnap │ └── ButtonSnap.ino └── libraries │ └── Adafruit_NeoPixel │ ├── Adafruit_NeoPixel.cpp │ ├── Adafruit_NeoPixel.h │ ├── COPYING │ ├── README.md │ └── examples │ ├── goggles │ └── goggles.pde │ └── strandtest │ └── strandtest.ino ├── fabricate ├── Make-stl │ ├── L-R-screen_clips.stl │ ├── full_plate.stl │ ├── lada_inside_corner.stl │ ├── lada_inside_edge.stl │ ├── standoff3mm.stl │ └── t-b-screenclips.stl ├── TiM_lada_back.svg ├── TiM_lada_front.svg ├── TiM_lada_front_and_back.svg ├── bogen3001_keyboard_page1.svg ├── bogen3001_keyboard_page2.svg ├── button_box-bottom.svg ├── button_box-top.svg ├── cad-source │ ├── lada.scad │ ├── photobooth_alum.py │ ├── screen_clips.scad │ └── standoff2.scad ├── lada_base.py ├── logos-footprints │ ├── RaspiB+.svg │ ├── Wyolum-logo-vector.svg │ ├── Wyolum-logo.svg │ └── make logo.svg ├── old-model-b-version │ ├── photobooth-back.svg │ └── photobooth-front.svg ├── photobooth-make-back.svg ├── photobooth-make-front.svg └── readme.md └── scripts ├── boothcam.py ├── config.cred ├── config.py ├── constants.py ├── countdown_test.py ├── custom.py ├── email_logger.py ├── listalbums.py ├── logo.png ├── logo.svg ├── mailfile.py └── photobooth_gui.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/.gitignore -------------------------------------------------------------------------------- /Photos/Google-dev-step1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/Photos/Google-dev-step1.PNG -------------------------------------------------------------------------------- /Photos/Permission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/Photos/Permission.png -------------------------------------------------------------------------------- /Photos/google-dev-step3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/Photos/google-dev-step3.PNG -------------------------------------------------------------------------------- /Photos/google-dev-step4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/Photos/google-dev-step4.PNG -------------------------------------------------------------------------------- /Photos/google-dev-step5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/Photos/google-dev-step5.PNG -------------------------------------------------------------------------------- /Photos/google-dev-step6-download.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/Photos/google-dev-step6-download.PNG -------------------------------------------------------------------------------- /Photos/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/Photos/logo.svg -------------------------------------------------------------------------------- /Photos/paste-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/Photos/paste-code.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/README.md -------------------------------------------------------------------------------- /arduino/ButtonSnap/ButtonSnap.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/arduino/ButtonSnap/ButtonSnap.ino -------------------------------------------------------------------------------- /arduino/libraries/Adafruit_NeoPixel/Adafruit_NeoPixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/arduino/libraries/Adafruit_NeoPixel/Adafruit_NeoPixel.cpp -------------------------------------------------------------------------------- /arduino/libraries/Adafruit_NeoPixel/Adafruit_NeoPixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/arduino/libraries/Adafruit_NeoPixel/Adafruit_NeoPixel.h -------------------------------------------------------------------------------- /arduino/libraries/Adafruit_NeoPixel/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/arduino/libraries/Adafruit_NeoPixel/COPYING -------------------------------------------------------------------------------- /arduino/libraries/Adafruit_NeoPixel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/arduino/libraries/Adafruit_NeoPixel/README.md -------------------------------------------------------------------------------- /arduino/libraries/Adafruit_NeoPixel/examples/goggles/goggles.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/arduino/libraries/Adafruit_NeoPixel/examples/goggles/goggles.pde -------------------------------------------------------------------------------- /arduino/libraries/Adafruit_NeoPixel/examples/strandtest/strandtest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/arduino/libraries/Adafruit_NeoPixel/examples/strandtest/strandtest.ino -------------------------------------------------------------------------------- /fabricate/Make-stl/L-R-screen_clips.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/Make-stl/L-R-screen_clips.stl -------------------------------------------------------------------------------- /fabricate/Make-stl/full_plate.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/Make-stl/full_plate.stl -------------------------------------------------------------------------------- /fabricate/Make-stl/lada_inside_corner.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/Make-stl/lada_inside_corner.stl -------------------------------------------------------------------------------- /fabricate/Make-stl/lada_inside_edge.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/Make-stl/lada_inside_edge.stl -------------------------------------------------------------------------------- /fabricate/Make-stl/standoff3mm.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/Make-stl/standoff3mm.stl -------------------------------------------------------------------------------- /fabricate/Make-stl/t-b-screenclips.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/Make-stl/t-b-screenclips.stl -------------------------------------------------------------------------------- /fabricate/TiM_lada_back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/TiM_lada_back.svg -------------------------------------------------------------------------------- /fabricate/TiM_lada_front.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/TiM_lada_front.svg -------------------------------------------------------------------------------- /fabricate/TiM_lada_front_and_back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/TiM_lada_front_and_back.svg -------------------------------------------------------------------------------- /fabricate/bogen3001_keyboard_page1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/bogen3001_keyboard_page1.svg -------------------------------------------------------------------------------- /fabricate/bogen3001_keyboard_page2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/bogen3001_keyboard_page2.svg -------------------------------------------------------------------------------- /fabricate/button_box-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/button_box-bottom.svg -------------------------------------------------------------------------------- /fabricate/button_box-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/button_box-top.svg -------------------------------------------------------------------------------- /fabricate/cad-source/lada.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/cad-source/lada.scad -------------------------------------------------------------------------------- /fabricate/cad-source/photobooth_alum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/cad-source/photobooth_alum.py -------------------------------------------------------------------------------- /fabricate/cad-source/screen_clips.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/cad-source/screen_clips.scad -------------------------------------------------------------------------------- /fabricate/cad-source/standoff2.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/cad-source/standoff2.scad -------------------------------------------------------------------------------- /fabricate/lada_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/lada_base.py -------------------------------------------------------------------------------- /fabricate/logos-footprints/RaspiB+.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/logos-footprints/RaspiB+.svg -------------------------------------------------------------------------------- /fabricate/logos-footprints/Wyolum-logo-vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/logos-footprints/Wyolum-logo-vector.svg -------------------------------------------------------------------------------- /fabricate/logos-footprints/Wyolum-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/logos-footprints/Wyolum-logo.svg -------------------------------------------------------------------------------- /fabricate/logos-footprints/make logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/logos-footprints/make logo.svg -------------------------------------------------------------------------------- /fabricate/old-model-b-version/photobooth-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/old-model-b-version/photobooth-back.svg -------------------------------------------------------------------------------- /fabricate/old-model-b-version/photobooth-front.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/old-model-b-version/photobooth-front.svg -------------------------------------------------------------------------------- /fabricate/photobooth-make-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/photobooth-make-back.svg -------------------------------------------------------------------------------- /fabricate/photobooth-make-front.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/photobooth-make-front.svg -------------------------------------------------------------------------------- /fabricate/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/fabricate/readme.md -------------------------------------------------------------------------------- /scripts/boothcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/scripts/boothcam.py -------------------------------------------------------------------------------- /scripts/config.cred: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/scripts/config.cred -------------------------------------------------------------------------------- /scripts/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/scripts/config.py -------------------------------------------------------------------------------- /scripts/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/scripts/constants.py -------------------------------------------------------------------------------- /scripts/countdown_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/scripts/countdown_test.py -------------------------------------------------------------------------------- /scripts/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/scripts/custom.py -------------------------------------------------------------------------------- /scripts/email_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/scripts/email_logger.py -------------------------------------------------------------------------------- /scripts/listalbums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/scripts/listalbums.py -------------------------------------------------------------------------------- /scripts/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/scripts/logo.png -------------------------------------------------------------------------------- /scripts/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/scripts/logo.svg -------------------------------------------------------------------------------- /scripts/mailfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/scripts/mailfile.py -------------------------------------------------------------------------------- /scripts/photobooth_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyolum/OpenSelfie/HEAD/scripts/photobooth_gui.py --------------------------------------------------------------------------------