├── .gitignore ├── Makefile ├── camera.jpg ├── components ├── camera │ ├── Kconfig.projbuild │ ├── bitmap.c │ ├── camera.c │ ├── camera_common.h │ ├── component.mk │ ├── image_utils.c │ ├── include │ │ ├── bitmap.h │ │ └── camera.h │ ├── ov2640.c │ ├── ov2640.h │ ├── ov2640_regs.h │ ├── ov7670.c │ ├── ov7670.h │ ├── ov7670_def.h │ ├── ov7670_regs.h │ ├── ov7725.c │ ├── ov7725.h │ ├── ov7725_regs.h │ ├── sccb.c │ ├── sccb.h │ ├── sensor.h │ ├── twi.c │ ├── twi.h │ ├── wiring.c │ ├── wiring.h │ ├── xclk.c │ └── xclk.h ├── component.mk └── lcd │ ├── Adafruit-GFX-Library │ ├── .gitignore │ ├── Adafruit_GFX.cpp │ ├── Adafruit_GFX.h │ ├── Adafruit_SPITFT.cpp │ ├── Adafruit_SPITFT.h │ ├── Adafruit_SPITFT_Macros.h │ ├── Fonts │ │ ├── FreeMono12pt7b.h │ │ ├── FreeMono18pt7b.h │ │ ├── FreeMono24pt7b.h │ │ ├── FreeMono9pt7b.h │ │ ├── FreeMonoBold12pt7b.h │ │ ├── FreeMonoBold18pt7b.h │ │ ├── FreeMonoBold24pt7b.h │ │ ├── FreeMonoBold9pt7b.h │ │ ├── FreeMonoBoldOblique12pt7b.h │ │ ├── FreeMonoBoldOblique18pt7b.h │ │ ├── FreeMonoBoldOblique24pt7b.h │ │ ├── FreeMonoBoldOblique9pt7b.h │ │ ├── FreeMonoOblique12pt7b.h │ │ ├── FreeMonoOblique18pt7b.h │ │ ├── FreeMonoOblique24pt7b.h │ │ ├── FreeMonoOblique9pt7b.h │ │ ├── FreeSans12pt7b.h │ │ ├── FreeSans18pt7b.h │ │ ├── FreeSans24pt7b.h │ │ ├── FreeSans9pt7b.h │ │ ├── FreeSansBold12pt7b.h │ │ ├── FreeSansBold18pt7b.h │ │ ├── FreeSansBold24pt7b.h │ │ ├── FreeSansBold9pt7b.h │ │ ├── FreeSansBoldOblique12pt7b.h │ │ ├── FreeSansBoldOblique18pt7b.h │ │ ├── FreeSansBoldOblique24pt7b.h │ │ ├── FreeSansBoldOblique9pt7b.h │ │ ├── FreeSansOblique12pt7b.h │ │ ├── FreeSansOblique18pt7b.h │ │ ├── FreeSansOblique24pt7b.h │ │ ├── FreeSansOblique9pt7b.h │ │ ├── FreeSerif12pt7b.h │ │ ├── FreeSerif18pt7b.h │ │ ├── FreeSerif24pt7b.h │ │ ├── FreeSerif9pt7b.h │ │ ├── FreeSerifBold12pt7b.h │ │ ├── FreeSerifBold18pt7b.h │ │ ├── FreeSerifBold24pt7b.h │ │ ├── FreeSerifBold9pt7b.h │ │ ├── FreeSerifBoldItalic12pt7b.h │ │ ├── FreeSerifBoldItalic18pt7b.h │ │ ├── FreeSerifBoldItalic24pt7b.h │ │ ├── FreeSerifBoldItalic9pt7b.h │ │ ├── FreeSerifItalic12pt7b.h │ │ ├── FreeSerifItalic18pt7b.h │ │ ├── FreeSerifItalic24pt7b.h │ │ ├── FreeSerifItalic9pt7b.h │ │ ├── Org_01.h │ │ ├── Picopixel.h │ │ ├── Tiny3x3a2pt7b │ │ └── TomThumb.h │ ├── README.md │ ├── fontconvert │ │ ├── Makefile │ │ ├── fontconvert.c │ │ ├── fontconvert_win.md │ │ └── makefonts.sh │ ├── gfxfont.h │ ├── glcdfont.c │ ├── library.properties │ └── license.txt │ ├── README.md │ ├── adaptation.cpp │ ├── component.mk │ ├── font7s.c │ ├── include │ ├── WProgram.h │ ├── font7s.h │ ├── gfxfont.h │ ├── glcdfont.h │ ├── iot_lcd.h │ └── spi_lcd.h │ ├── iot_lcd.cpp │ ├── spi_lcd.c │ └── test │ ├── component.mk │ ├── image.h │ ├── lcd_example.cpp │ ├── lcd_image.h │ ├── lcd_refresh.cpp │ └── lcd_thermostat.cpp ├── cpu colock configuration.png ├── example configuration.png ├── main ├── Kconfig.projbuild ├── app_main.cpp ├── camere_lcd.cpp ├── component.mk ├── http_server.cpp └── include │ └── app_camera.h ├── pin configuration.png ├── readme.md ├── sdkconfig ├── sdkconfig.defaults ├── spi ram configuration.png └── wroverkit.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/Makefile -------------------------------------------------------------------------------- /camera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/camera.jpg -------------------------------------------------------------------------------- /components/camera/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/Kconfig.projbuild -------------------------------------------------------------------------------- /components/camera/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/bitmap.c -------------------------------------------------------------------------------- /components/camera/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/camera.c -------------------------------------------------------------------------------- /components/camera/camera_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/camera_common.h -------------------------------------------------------------------------------- /components/camera/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS := include 2 | 3 | -------------------------------------------------------------------------------- /components/camera/image_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/image_utils.c -------------------------------------------------------------------------------- /components/camera/include/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/include/bitmap.h -------------------------------------------------------------------------------- /components/camera/include/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/include/camera.h -------------------------------------------------------------------------------- /components/camera/ov2640.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/ov2640.c -------------------------------------------------------------------------------- /components/camera/ov2640.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/ov2640.h -------------------------------------------------------------------------------- /components/camera/ov2640_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/ov2640_regs.h -------------------------------------------------------------------------------- /components/camera/ov7670.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/ov7670.c -------------------------------------------------------------------------------- /components/camera/ov7670.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/ov7670.h -------------------------------------------------------------------------------- /components/camera/ov7670_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/ov7670_def.h -------------------------------------------------------------------------------- /components/camera/ov7670_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/ov7670_regs.h -------------------------------------------------------------------------------- /components/camera/ov7725.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/ov7725.c -------------------------------------------------------------------------------- /components/camera/ov7725.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/ov7725.h -------------------------------------------------------------------------------- /components/camera/ov7725_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/ov7725_regs.h -------------------------------------------------------------------------------- /components/camera/sccb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/sccb.c -------------------------------------------------------------------------------- /components/camera/sccb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/sccb.h -------------------------------------------------------------------------------- /components/camera/sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/sensor.h -------------------------------------------------------------------------------- /components/camera/twi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/twi.c -------------------------------------------------------------------------------- /components/camera/twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/twi.h -------------------------------------------------------------------------------- /components/camera/wiring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/wiring.c -------------------------------------------------------------------------------- /components/camera/wiring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/wiring.h -------------------------------------------------------------------------------- /components/camera/xclk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/xclk.c -------------------------------------------------------------------------------- /components/camera/xclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/camera/xclk.h -------------------------------------------------------------------------------- /components/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/component.mk -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/.gitignore -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Adafruit_GFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Adafruit_GFX.cpp -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Adafruit_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Adafruit_GFX.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Adafruit_SPITFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Adafruit_SPITFT.cpp -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Adafruit_SPITFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Adafruit_SPITFT.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Adafruit_SPITFT_Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Adafruit_SPITFT_Macros.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeMono12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeMono12pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeMono18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeMono18pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeMono24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeMono24pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeMono9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeMono9pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoBold12pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoBold18pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoBold24pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoBold9pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoBoldOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoBoldOblique12pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoBoldOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoBoldOblique18pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoBoldOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoBoldOblique24pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoBoldOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoBoldOblique9pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoOblique12pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoOblique18pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoOblique24pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeMonoOblique9pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSans12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSans12pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSans18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSans18pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSans24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSans24pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSans9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSans9pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSansBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSansBold12pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSansBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSansBold18pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSansBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSansBold24pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSansBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSansBold9pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSansBoldOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSansBoldOblique12pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSansBoldOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSansBoldOblique18pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSansBoldOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSansBoldOblique24pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSansBoldOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSansBoldOblique9pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSansOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSansOblique12pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSansOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSansOblique18pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSansOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSansOblique24pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSansOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSansOblique9pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSerif12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSerif12pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSerif18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSerif18pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSerif24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSerif24pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSerif9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSerif9pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifBold12pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifBold18pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifBold24pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifBold9pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifBoldItalic12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifBoldItalic12pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifBoldItalic18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifBoldItalic18pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifBoldItalic24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifBoldItalic24pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifBoldItalic9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifBoldItalic9pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifItalic12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifItalic12pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifItalic18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifItalic18pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifItalic24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifItalic24pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifItalic9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/FreeSerifItalic9pt7b.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/Org_01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/Org_01.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/Picopixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/Picopixel.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/Tiny3x3a2pt7b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/Tiny3x3a2pt7b -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/Fonts/TomThumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/Fonts/TomThumb.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/README.md -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/fontconvert/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/fontconvert/Makefile -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/fontconvert/fontconvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/fontconvert/fontconvert.c -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/fontconvert/fontconvert_win.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/fontconvert/fontconvert_win.md -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/fontconvert/makefonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/fontconvert/makefonts.sh -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/gfxfont.h -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/glcdfont.c -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/library.properties -------------------------------------------------------------------------------- /components/lcd/Adafruit-GFX-Library/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/Adafruit-GFX-Library/license.txt -------------------------------------------------------------------------------- /components/lcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/README.md -------------------------------------------------------------------------------- /components/lcd/adaptation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/adaptation.cpp -------------------------------------------------------------------------------- /components/lcd/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/component.mk -------------------------------------------------------------------------------- /components/lcd/font7s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/font7s.c -------------------------------------------------------------------------------- /components/lcd/include/WProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/include/WProgram.h -------------------------------------------------------------------------------- /components/lcd/include/font7s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/include/font7s.h -------------------------------------------------------------------------------- /components/lcd/include/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/include/gfxfont.h -------------------------------------------------------------------------------- /components/lcd/include/glcdfont.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | extern const unsigned char font[]; 4 | -------------------------------------------------------------------------------- /components/lcd/include/iot_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/include/iot_lcd.h -------------------------------------------------------------------------------- /components/lcd/include/spi_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/include/spi_lcd.h -------------------------------------------------------------------------------- /components/lcd/iot_lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/iot_lcd.cpp -------------------------------------------------------------------------------- /components/lcd/spi_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/spi_lcd.c -------------------------------------------------------------------------------- /components/lcd/test/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/test/component.mk -------------------------------------------------------------------------------- /components/lcd/test/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/test/image.h -------------------------------------------------------------------------------- /components/lcd/test/lcd_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/test/lcd_example.cpp -------------------------------------------------------------------------------- /components/lcd/test/lcd_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/test/lcd_image.h -------------------------------------------------------------------------------- /components/lcd/test/lcd_refresh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/test/lcd_refresh.cpp -------------------------------------------------------------------------------- /components/lcd/test/lcd_thermostat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/components/lcd/test/lcd_thermostat.cpp -------------------------------------------------------------------------------- /cpu colock configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/cpu colock configuration.png -------------------------------------------------------------------------------- /example configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/example configuration.png -------------------------------------------------------------------------------- /main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/main/Kconfig.projbuild -------------------------------------------------------------------------------- /main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/main/app_main.cpp -------------------------------------------------------------------------------- /main/camere_lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/main/camere_lcd.cpp -------------------------------------------------------------------------------- /main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/main/component.mk -------------------------------------------------------------------------------- /main/http_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/main/http_server.cpp -------------------------------------------------------------------------------- /main/include/app_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/main/include/app_camera.h -------------------------------------------------------------------------------- /pin configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/pin configuration.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/readme.md -------------------------------------------------------------------------------- /sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/sdkconfig -------------------------------------------------------------------------------- /sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/sdkconfig.defaults -------------------------------------------------------------------------------- /spi ram configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/spi ram configuration.png -------------------------------------------------------------------------------- /wroverkit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteYuan/esp32_ov7670_video/HEAD/wroverkit.jpg --------------------------------------------------------------------------------