Skip to content
This repository was archived by the owner on Jun 15, 2020. It is now read-only.

Commit 68ebf0c

Browse files
committedDec 4, 2017
http_server: move the code into separate repo
1 parent 451d67f commit 68ebf0c

File tree

6 files changed

+6
-1093
lines changed

6 files changed

+6
-1093
lines changed
 

‎.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "components/http_server"]
2+
path = components/http_server
3+
url = https://github.com/igrr/esp32-http-server.git

‎README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Code provided in this repository gets the image from camera and prints it out as
2828

2929
To make this code work, you need the following components:
3030

31+
* This repository. It contains submodules, so make sure you clone it with `--recursive` option. If you have already cloned it without `--recursive`, run `git submodule update --init`.
3132
* [ESP32](https://espressif.com/en/products/hardware/esp32/overview) module
3233
* Camera module
3334
* PC with [esp-idf](https://github.com/espressif/esp-idf)
@@ -46,7 +47,7 @@ This example has been tested with OV7725 camera module. Use it, if this is your
4647

4748
Other OV7xxx series should work as well, with some changes to camera configuration code. OV5xxx can work too, but it is advisable to choose the ones which support RGB or YUV 8-bit wide output bus. The ones which only output 10-bit raw data may be a bit harder to work with. Also choose the camera which can output a scaled down (QVGA or VGA) image. Use of larger frame buffers will require external SPI RAM.
4849

49-
### Esp-idf
50+
### ESP-IDF
5051

5152
Configure your PC according to [ESP32 Documentation](http://esp-idf.readthedocs.io/en/latest/?badge=latest). [Windows](http://esp-idf.readthedocs.io/en/latest/windows-setup.html), [Linux](http://esp-idf.readthedocs.io/en/latest/linux-setup.html) and [Mac OS](http://esp-idf.readthedocs.io/en/latest/macos-setup.html) are supported. If this is you first exposure to ESP32 and [esp-idf](https://github.com/espressif/esp-idf), then get familiar with [01_hello_world](https://github.com/espressif/esp-idf/tree/master/examples/01_hello_world) and [02_blink](https://github.com/espressif/esp-idf/tree/master/examples/02_blink) examples. Make them work and understand before proceeding further.
5253

‎components/http_server

Submodule http_server added at fc44658

‎components/http_server/component.mk

-1
This file was deleted.

‎components/http_server/http_server.c

-804
This file was deleted.

‎components/http_server/http_server.h

-287
This file was deleted.

0 commit comments

Comments
 (0)
This repository has been archived.