Search found 97 matches
- Wed Oct 09, 2024 6:50 am
- Forum: Hardware
- Topic: ESP32-CAM camera module problem
- Replies: 1
- Views: 7631
Re: ESP32-CAM camera module problem
There is an I2C pull-up resistor in the circuit of the ov2640 module. This may be one of the reasons for I2C communication errors.
- Tue Oct 08, 2024 8:13 am
- Forum: 全国大学生物联网设计竞赛乐鑫答疑专区
- Topic: esp32s3 sdmmc 读写速度慢
- Replies: 1
- Views: 2251
Re: esp32s3 sdmmc 读写速度慢
可以尝试按照扇区的 size,比如 4096bytes对齐后写入 SD 卡。
- Tue Jul 23, 2024 2:13 am
- Forum: ESP-WHO 中文讨论版
- Topic: esp-who例程自定义camera引脚不能大于39是为何?
- Replies: 3
- Views: 7551
Re: esp-who例程自定义camera引脚不能大于39是为何?
这取决于配置菜单的设计,一般这种设计总是参考官方开发板做一些限制,比如一些管脚内部使用了,或者一些关键只能作为 input,不能作为 output,可以自官网下载对应芯片、模组的 datasheet、技术参考手册查询。
- Thu Jul 18, 2024 6:07 am
- Forum: ESP-WHO 中文讨论版
- Topic: esp-who例程自定义camera引脚不能大于39是为何?
- Replies: 3
- Views: 7551
Re: esp-who例程自定义camera引脚不能大于39是为何?
不要依赖外部终端给出的配置项。你总可以在代码中指定要使用的 GPIO。
但是对于提到的 GPIO40,它不一定是空闲的,因为技术手册中提到,一些模组默认使用它作为 MTCK,不用于其他用途:
但是对于提到的 GPIO40,它不一定是空闲的,因为技术手册中提到,一些模组默认使用它作为 MTCK,不用于其他用途:
- Thu Apr 25, 2024 3:17 am
- Forum: ESP-WHO
- Topic: Saved Image Size
- Replies: 5
- Views: 29754
Re: Saved Image Size
Yes, when "still" is enabled, the backend is actually constantly pushing images to the web page. Therefore, there is a certain time difference between what you see and what you save.
This example is not very compatible, here is a simpler example to ensure WYSIWYG.
This example is not very compatible, here is a simpler example to ensure WYSIWYG.
- Thu Apr 25, 2024 3:14 am
- Forum: Showcase
- Topic: How to Use BBCode: A Complete Guide
- Replies: 0
- Views: 5522
How to Use BBCode: A Complete Guide
The syntax of this website is BBcode, here is a guide. Please enjoy.
- Tue Apr 16, 2024 2:49 am
- Forum: ESP-WHO 中文讨论版
- Topic: ESP32-S3-EYE在运行中老是重启
- Replies: 1
- Views: 7199
Re: ESP32-S3-EYE在运行中老是重启
LoadProhibited 的错误,应该是没有检查 fb = esp_camera_fb_get(); 返回的 fb 是否为空导致的。
- Thu Mar 21, 2024 7:23 am
- Forum: ESP-IDF 中文讨论版
- Topic: esp camera 无法重新配置初始化
- Replies: 1
- Views: 3521
Re: esp camera 无法重新配置初始化
当你在研究 camera 项目时,必须了解主板是通过 sccb 总线控制 sensor 的行为的。并且必须查看 sensor 的技术手册来解决一些问题。 从错误的提示看,在切换到 JPEG 模式时,出现了 NO-SOI 的警告,这说明 sensor 可能正在输出错误的数据,导致 MCU 持续获取不到正确的 JPEG 图片,所以触发 stack overflow 的问题。 sensor 方面的技术似乎只有 sensor 原厂的人才明白,我查看了程序和 sensor 的技术手册,在 ov2640.c 的 reset() 函数中,的确 reset system registers 了,如果你在 es...
- Wed Mar 13, 2024 8:30 am
- Forum: ESP-IDF 中文讨论版
- Topic: esp camera 配置为JPEG输出格式出现问题
- Replies: 5
- Views: 5244
Re: esp camera 配置为JPEG输出格式出现问题
是的,JPEG 模式不支持这个分辨率,但是可以配置在 RGB565 格式工作。可以使用这里的示例进行测试:
https://github.com/espressif/esp-iot-so ... eam_server
推荐的配置参数是:XCLK=20M、RGB565。
https://github.com/espressif/esp-iot-so ... eam_server
推荐的配置参数是:XCLK=20M、RGB565。
- Tue Mar 12, 2024 6:09 am
- Forum: ESP-IDF 中文讨论版
- Topic: esp camera 配置为JPEG输出格式出现问题
- Replies: 5
- Views: 5244
Re: esp camera 配置为JPEG输出格式出现问题
正在使用哪个 sensor ? 不是所有的分辨率都提供支持。