Search found 6 matches
- Sun Apr 19, 2020 10:27 am
- Forum: Hardware
- Topic: ESP32-CAM sends corrupted picture
- Replies: 5
- Views: 10504
Re: ESP32-CAM sends corrupted picture
I'm having the same issue. I think it is because the SPI RAM speed is not fast enough? My setting: .frame_size = FRAMESIZE_UXGA, //QQVGA-UXGA Do not use sizes above QVGA when not JPEG .jpeg_quality = 3, resolution is 1600x1200. When I use a lower resolution with low quality without allocating frame ...
- Mon Sep 09, 2019 2:39 am
- Forum: General Discussion
- Topic: New Chip ESP32-S2
- Replies: 42
- Views: 59880
Re: New Chip ESP32-S2
Is possible to connect ESP32-S2 to a 4G USB dongle and connect to the internet? (not using WIFI) This is probably technically possible. Depending on the exact USB device it may require some additional driver support which may or may not be supported in ESP-IDF. Note that you can connect an ESP32 to...
- Fri Jul 12, 2019 3:03 am
- Forum: General Discussion
- Topic: New Chip ESP32-S2
- Replies: 42
- Views: 59880
Re: New Chip ESP32-S2
Is possible to connect ESP32-S2 to a 4G USB dongle and connect to the internet? (not using WIFI)
- Mon May 20, 2019 6:22 am
- Forum: ESP-IDF 中文讨论版
- Topic: [已解决] ESP32-CAM摄像头应用UART乱码问题求助
- Replies: 2
- Views: 8176
Re: ESP32-CAM摄像头应用UART乱码问题求助
找到解决方法了
用了官方的esp-who来做没问题了。最开始我用的那个repo就有问题。我还以为两个差别不大。
用了官方的esp-who来做没问题了。最开始我用的那个repo就有问题。我还以为两个差别不大。
- Mon May 20, 2019 3:50 am
- Forum: ESP-IDF 中文讨论版
- Topic: [已解决] ESP32-CAM摄像头应用UART乱码问题求助
- Replies: 2
- Views: 8176
Re: UART乱码问题求助
更新一下:
那个源码应该是基于ESP-who的
然后今天测了一下,基于idf-template,先运行uart和定时器,都是OK的。
然后加入esp-camera的相关component,就出现乱码了。基本上确定是和camera component有关系。
那个源码应该是基于ESP-who的
然后今天测了一下,基于idf-template,先运行uart和定时器,都是OK的。
然后加入esp-camera的相关component,就出现乱码了。基本上确定是和camera component有关系。
- Mon May 20, 2019 2:17 am
- Forum: ESP-IDF 中文讨论版
- Topic: [已解决] ESP32-CAM摄像头应用UART乱码问题求助
- Replies: 2
- Views: 8176
[已解决] ESP32-CAM摄像头应用UART乱码问题求助
我最近使用ESP32-CAM做一个图像采集项目,基于这个代码 https://github.com/InfiniteYuan1/esp32-camera-qr-recoginize/tree/master/examples/single_chip/camera_web_server,源代码是没问题的。然后我移除了http和WIFI,也能成功采集到图像。 但是我在初始化串口以后,发现串口定期发送乱码干扰串口输出。开机一段时间后,可以看到uart_write_bytes()和printf()发送的内容在乱码中间可以正常显示。 串口初始化代码: #define RX0_BUF_SIZE (1024)...