Search found 80 matches

by ESP_Me-no-dev
Fri Nov 01, 2024 7:11 am
Forum: ESP32 Arduino
Topic: The CameraWebServer routine of Arduino does not support ESP32S3-R8 to obtain high-resolution image quality of OV5604 cam
Replies: 7
Views: 1644

Re: The CameraWebServer routine of Arduino does not support ESP32S3-R8 to obtain high-resolution image quality of OV5604

I happened to have the same board as you and uploaded the Camera Web Server example from Arduino. Everything went fine and camera started normally with OPI PSRAM and all. I see that you are doing something with IOs 21 and 34 that is not part of that sketch. Can you try to upload the Camera Web Serve...
by ESP_Me-no-dev
Thu Oct 31, 2024 10:44 am
Forum: ESP32 Arduino
Topic: The CameraWebServer routine of Arduino does not support ESP32S3-R8 to obtain high-resolution image quality of OV5604 cam
Replies: 7
Views: 1644

Re: The CameraWebServer routine of Arduino does not support ESP32S3-R8 to obtain high-resolution image quality of OV5604

Please enable core debug level to verbose and submit the serial output again. Decoding the backtrace could be very helpful too. Example is working fine on my end with OPI PSRAM
by ESP_Me-no-dev
Thu Oct 31, 2024 10:40 am
Forum: ESP32 Arduino
Topic: How to specify the I2S port number with ESP Arduino core 3.x.x API?
Replies: 3
Views: 1348

Re: How to specify the I2S port number with ESP Arduino core 3.x.x API?

It automatically allocates an available port. No need to specify
by ESP_Me-no-dev
Tue Aug 08, 2023 8:29 am
Forum: ESP-IDF
Topic: Issue with converting Arduino Project into ESP-IDF
Replies: 1
Views: 1707

Re: Issue with converting Arduino Project into ESP-IDF

Currently the ESP-IDF v5.1 support is in branch "esp-idf-v5.1-libs" and will soon be merged into master. You can try with that branch.
by ESP_Me-no-dev
Fri May 13, 2022 11:00 am
Forum: ESP32 Arduino
Topic: How to use PSRAM as part of main memory
Replies: 1
Views: 2640

Re: How to use PSRAM as part of main memory

Please post a question on Arduino-esp32's github repository and fill all required information.
by ESP_Me-no-dev
Tue Sep 14, 2021 12:19 pm
Forum: ESP32 Arduino
Topic: Arduino WDT Issue in WiFi STA mode: Unable to reboot 10% of the time
Replies: 1
Views: 3897

Re: Arduino WDT Issue in WiFi STA mode: Unable to reboot 10% of the time

Hi @mikelisfbay :) You have an issue with your code. to better understand what is going on, please use the exception decoder to decode the backtrace: https://github.com/me-no-dev/EspExceptionDecoder
by ESP_Me-no-dev
Thu Sep 02, 2021 11:45 am
Forum: ESP-WHO
Topic: Pictures with green/blue tint after restart?
Replies: 1
Views: 38172

Re: Pictures with green/blue tint after restart?

Could you please file an issue report in the repository? https://github.com/espressif/esp32-camera/issues
by ESP_Me-no-dev
Tue Sep 29, 2020 3:57 pm
Forum: ESP-WHO
Topic: FORMAT_RGB565 and FORMAT_RGB888 DO NOT WORK!!!
Replies: 9
Views: 42218

Re: FORMAT_RGB565 and FORMAT_RGB888 DO NOT WORK!!!

frame2bmp outputs Microsotft Bitmap, not RGB888. It just so happened that the BMP file contains actually RGB888 after the header :)
by ESP_Me-no-dev
Fri Sep 25, 2020 8:37 am
Forum: ESP-WHO
Topic: FORMAT_RGB565 and FORMAT_RGB888 DO NOT WORK!!!
Replies: 9
Views: 42218

Re: FORMAT_RGB565 and FORMAT_RGB888 DO NOT WORK!!!

BMP files have a header before the pixels that have info on what that image is, what resolution and more. If you need only the pixels, skip the first 54 bytes. If you want to open the BMP on a computer, do not skip them :) Grabing in JPEG and converting is possible because it happens in a thread and...