Skip to content

NelsenEW/esp-stream-jpg

Repository files navigation

Example esp_stream_jpg

Creates a http server and listen to GET requests at https://[board-ip]/stream.jpg with WIFI-STA mode. When the request is triggered, it streams QVGA JPEG image from the camera.

Requirements

Instructions

  1. Clone the repository including submodules
git clone --recursive https://github.com/NelsenEW/esp_stream_jpg.git
  1. Configure your WiFi SSID and Password via idf.py menuconfig

Notes

  • All camera pins are configured by default accordingly to A.I. Thinker and you can check then inside Kconfig.projbuild.
  • Make sure to read sdkconfig.defaults file to get a grasp of required configurations to enable PSRAM and set it to 64MBit. PSRAM configuration should be added directly to sdkconfig once the menuconfig is done.

TO-DO

  • add AP-Mode capabilities (Currently, it only support STA mode).