trying to make correct multipart POST request

This commit is contained in:
2020-10-03 16:56:38 -05:00
commit e6cd208e11
7 changed files with 1463 additions and 0 deletions

13
CMakeLists.txt Normal file
View File

@@ -0,0 +1,13 @@
# The following lines of boilerplate have to be in your project's CMakeLists
# in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.5)
# (Not part of the boilerplate)
# This example uses an extra component for common functions such as Wi-Fi and Ethernet connection.
set(EXTRA_COMPONENT_DIRS
$ENV{IDF_PATH}/examples/common_components/protocol_examples_common
components/esp32-camera
)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(esp32_timelapse_camera)