esp32-ov7670-hacking icon indicating copy to clipboard operation
esp32-ov7670-hacking copied to clipboard

Based on https://github.com/igrr/esp32-cam-demo extended with an ILI9341 display, with a Telnet interface to change OV7670 settings on the fly. Streams BMP files from RGB565 and YUV422 (encoded to RG...

Results 6 esp32-ov7670-hacking issues
Sort by recently updated
recently updated
newest added

Detected overlap at address: 0x8000 for file: /Volumes/ESP32/esp-idf-v3.1/examples/esp32-cam-demo/build/partitions_singleapp.bin compile success.but flashing failed.

Hi @tekker thanks for the awesome work, it provided me a lot of fun! This is a noobish request, I got myselft an ESP32-Wrover-Kit v3 and have some free time...

ov7670_sine() in ov7670.c line 657 should be for correct results: ``` theta = 180 - theta; sine = ov7670_sin_table[theta / SIN_STEP]; ``` ov7670_calc_cmatrix() line 701 ``` void ov7670_calc_cmatrix( ov7670_info_t *info,...

Hi I tried replacing the CAMERA_PF_RGB565 with CAMERA_PF_GRAYSCALE to start getting grayscale images from the OV7670 but keep on running into LoadStoreError. I uncommented the necessary lines and the LoadStoreError...

@tekker Hi, tekker, I have a NodeMCU-32S based on ESP32 and an OV7670 camera. I am using the newest ESP-IDF , all compiles cleanly and when I flash/run, the log...

Hi, Do you think that is it possible to play a small video (~10 seconds) from RAM using the basic concepts of your code? The idea is to read the...