├── LICENSE ├── README.md ├── boot.py ├── main.py ├── ov2640.py ├── ov2640_constants.py ├── ov2640_hires_constants.py └── ov2640_lores_constants.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namato/micropython-ov2640/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namato/micropython-ov2640/HEAD/README.md -------------------------------------------------------------------------------- /boot.py: -------------------------------------------------------------------------------- 1 | import esp 2 | esp.osdebug(None) 3 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namato/micropython-ov2640/HEAD/main.py -------------------------------------------------------------------------------- /ov2640.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namato/micropython-ov2640/HEAD/ov2640.py -------------------------------------------------------------------------------- /ov2640_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namato/micropython-ov2640/HEAD/ov2640_constants.py -------------------------------------------------------------------------------- /ov2640_hires_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namato/micropython-ov2640/HEAD/ov2640_hires_constants.py -------------------------------------------------------------------------------- /ov2640_lores_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namato/micropython-ov2640/HEAD/ov2640_lores_constants.py --------------------------------------------------------------------------------