├── .gitignore ├── 3dmodel ├── Bottom.stl ├── Top.stl ├── sg90-2.scad ├── sg90-2.stl ├── sg90.scad └── sg90.stl ├── README.md ├── board ├── .gitignore ├── include │ └── README ├── lib │ └── README ├── platformio.ini ├── src │ ├── action.h │ ├── app_httpd.cpp │ ├── camera_index.h │ ├── camera_pins.h │ └── main.cpp └── test │ └── README ├── image ├── ESP32-CAM-CONNECTION.png ├── ESP32-CAM.png ├── circuit.sketch ├── product.jpg └── v1.1.0.png └── servers ├── .gitignore ├── build-linux.sh ├── build.sh ├── go.mod ├── go.sum ├── html ├── client.html └── uploader.html ├── src ├── main.go └── socket │ ├── action.go │ ├── client.go │ ├── hub.go │ ├── uploader.go │ └── wscore.go ├── start.sh └── stop.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea -------------------------------------------------------------------------------- /3dmodel/Bottom.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/3dmodel/Bottom.stl -------------------------------------------------------------------------------- /3dmodel/Top.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/3dmodel/Top.stl -------------------------------------------------------------------------------- /3dmodel/sg90-2.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/3dmodel/sg90-2.scad -------------------------------------------------------------------------------- /3dmodel/sg90-2.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/3dmodel/sg90-2.stl -------------------------------------------------------------------------------- /3dmodel/sg90.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/3dmodel/sg90.scad -------------------------------------------------------------------------------- /3dmodel/sg90.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/3dmodel/sg90.stl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/README.md -------------------------------------------------------------------------------- /board/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/board/.gitignore -------------------------------------------------------------------------------- /board/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/board/include/README -------------------------------------------------------------------------------- /board/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/board/lib/README -------------------------------------------------------------------------------- /board/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/board/platformio.ini -------------------------------------------------------------------------------- /board/src/action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/board/src/action.h -------------------------------------------------------------------------------- /board/src/app_httpd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/board/src/app_httpd.cpp -------------------------------------------------------------------------------- /board/src/camera_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/board/src/camera_index.h -------------------------------------------------------------------------------- /board/src/camera_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/board/src/camera_pins.h -------------------------------------------------------------------------------- /board/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/board/src/main.cpp -------------------------------------------------------------------------------- /board/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/board/test/README -------------------------------------------------------------------------------- /image/ESP32-CAM-CONNECTION.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/image/ESP32-CAM-CONNECTION.png -------------------------------------------------------------------------------- /image/ESP32-CAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/image/ESP32-CAM.png -------------------------------------------------------------------------------- /image/circuit.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/image/circuit.sketch -------------------------------------------------------------------------------- /image/product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/image/product.jpg -------------------------------------------------------------------------------- /image/v1.1.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/image/v1.1.0.png -------------------------------------------------------------------------------- /servers/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | camera.log -------------------------------------------------------------------------------- /servers/build-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/servers/build-linux.sh -------------------------------------------------------------------------------- /servers/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/servers/build.sh -------------------------------------------------------------------------------- /servers/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/servers/go.mod -------------------------------------------------------------------------------- /servers/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/servers/go.sum -------------------------------------------------------------------------------- /servers/html/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/servers/html/client.html -------------------------------------------------------------------------------- /servers/html/uploader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/servers/html/uploader.html -------------------------------------------------------------------------------- /servers/src/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/servers/src/main.go -------------------------------------------------------------------------------- /servers/src/socket/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/servers/src/socket/action.go -------------------------------------------------------------------------------- /servers/src/socket/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/servers/src/socket/client.go -------------------------------------------------------------------------------- /servers/src/socket/hub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/servers/src/socket/hub.go -------------------------------------------------------------------------------- /servers/src/socket/uploader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/servers/src/socket/uploader.go -------------------------------------------------------------------------------- /servers/src/socket/wscore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/servers/src/socket/wscore.go -------------------------------------------------------------------------------- /servers/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guohuanwen/esp32-cam/HEAD/servers/start.sh -------------------------------------------------------------------------------- /servers/stop.sh: -------------------------------------------------------------------------------- 1 | kill -9 `lsof -t -i tcp:8080` --------------------------------------------------------------------------------