shariltumin / esp32-cam-micropython-2022

MicroPython esp32-cam firmware with camera support compiled with esp-idf-4.4.0. Python script files for live streaming
MIT License
174 stars 33 forks source link

Better firmware #14

Open andim27 opened 1 year ago

andim27 commented 1 year ago

Could you make firmware with Camera and BLE support?

askoriy commented 1 year ago

yes, it would be good feature. I assume that firmware doesn't fit to standard 4MB flash, but its possible to solder larger spi flash chip

shariltumin commented 1 year ago

I don't believe esp32_cam with BLE or Bluetooth Classic will be a viable system. When using SPP with the ESP32 BLE and Bluetooth Classic, the maximum MTU is 23 bytes and 990 bytes, respectively. To send an image file over SPP, it must be sent in chunks. These chunks must then be reassembled by the receiver.

I'm curious if we have BLE clients that can effectively handle data stream chunks. Sending 2K Bytes of framebuffer over BLE to such a device is one way to test. This can be tested with the official esp32 firmware.

By removing network support, it is possible to incorporate BLE into the esp32_cam firmware. I've actually done it before. I also have a Bluetooth Classic test device that supports SPP. https://github.com/shariltumin/esp32-bluetooth-classic-micropython

Chunking and reassembling may be possible only for still images.

shariltumin commented 1 year ago

For those who need firmware with BLE please have a look at firmwares-20230521