├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── githubci.yml ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── cameratest │ └── cameratest.ino └── selfie │ └── selfie.ino ├── library.properties └── src ├── Adafruit_OV7670.cpp ├── Adafruit_OV7670.h ├── SPIBrute.cpp ├── SPIBrute.h ├── arch ├── samd51.c ├── samd51.h └── samd51_arduino.cpp ├── image_ops.c ├── image_ops.h ├── ov7670.c └── ov7670.h /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_OV7670/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_OV7670/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_OV7670/HEAD/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Our handy .gitignore for automation ease 2 | Doxyfile* 3 | doxygen_sqlite3.db 4 | html 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_OV7670/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_OV7670/HEAD/README.md -------------------------------------------------------------------------------- /examples/cameratest/cameratest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_OV7670/HEAD/examples/cameratest/cameratest.ino -------------------------------------------------------------------------------- /examples/selfie/selfie.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_OV7670/HEAD/examples/selfie/selfie.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_OV7670/HEAD/library.properties -------------------------------------------------------------------------------- /src/Adafruit_OV7670.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_OV7670/HEAD/src/Adafruit_OV7670.cpp -------------------------------------------------------------------------------- /src/Adafruit_OV7670.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_OV7670/HEAD/src/Adafruit_OV7670.h -------------------------------------------------------------------------------- /src/SPIBrute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_OV7670/HEAD/src/SPIBrute.cpp -------------------------------------------------------------------------------- /src/SPIBrute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_OV7670/HEAD/src/SPIBrute.h -------------------------------------------------------------------------------- /src/arch/samd51.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_OV7670/HEAD/src/arch/samd51.c -------------------------------------------------------------------------------- /src/arch/samd51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_OV7670/HEAD/src/arch/samd51.h -------------------------------------------------------------------------------- /src/arch/samd51_arduino.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_OV7670/HEAD/src/arch/samd51_arduino.cpp -------------------------------------------------------------------------------- /src/image_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_OV7670/HEAD/src/image_ops.c -------------------------------------------------------------------------------- /src/image_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_OV7670/HEAD/src/image_ops.h -------------------------------------------------------------------------------- /src/ov7670.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_OV7670/HEAD/src/ov7670.c -------------------------------------------------------------------------------- /src/ov7670.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_OV7670/HEAD/src/ov7670.h --------------------------------------------------------------------------------