├── .gitmodules └── README.md /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "MDCEnclosure"] 2 | path = MDCEnclosure 3 | url = git@github.com:toasterllc/MDCEnclosure.git 4 | [submodule "MDCBoard"] 5 | path = MDCBoard 6 | url = git@github.com:toasterllc/MDCBoard.git 7 | [submodule "MDCCode"] 8 | path = MDCCode 9 | url = git@github.com:toasterllc/MDCCode.git 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Photon 2 | 3 | This repo contains the entirety of the code and hardware design files for the [Photon camera](https://toaster.llc/photon). 4 | 5 | `MDC` stands for "motion detector camera". 6 | 7 | ## Organization 8 | 9 | `MDCCode`: firmware / software / Verilog for Photon's various chips 10 | 11 | `MDCBoard`: Eagle design files for Photon's PCB 12 | 13 | `MDCEnclosure`: Fusion 360 design files for Photon's enclosure 14 | 15 | ## Cloning 16 | 17 | Clone all submodules at once using: 18 | 19 | `git clone --recursive git@github.com:toasterllc/Photon.git` 20 | --------------------------------------------------------------------------------