├── .env.template ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ └── main.yml ├── .gitignore ├── .vscode └── extensions.json ├── LICENSE ├── PROJECT_DOCS.md ├── PROJECT_OVERVIEW.md ├── QUICK_REFERENCE.md ├── README.md ├── assets └── images │ ├── browser controller.png │ ├── esp32-cam 1200x1200.jpg │ ├── esp32-cam-ai.png │ └── example-conversation.png ├── browser_controller.html ├── capture_image.ps1 ├── capture_image.sh ├── env-extra.py ├── include ├── README └── camera_config.h ├── lib ├── README └── mcp │ ├── mcp.cpp │ └── mcp.h ├── platformio.ini ├── src └── main.cpp ├── test └── README ├── test_cors.ps1 └── test_cors.sh /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/.env.template -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ./*.* 2 | .* 3 | *.log -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/LICENSE -------------------------------------------------------------------------------- /PROJECT_DOCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/PROJECT_DOCS.md -------------------------------------------------------------------------------- /PROJECT_OVERVIEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/PROJECT_OVERVIEW.md -------------------------------------------------------------------------------- /QUICK_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/QUICK_REFERENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/browser controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/assets/images/browser controller.png -------------------------------------------------------------------------------- /assets/images/esp32-cam 1200x1200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/assets/images/esp32-cam 1200x1200.jpg -------------------------------------------------------------------------------- /assets/images/esp32-cam-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/assets/images/esp32-cam-ai.png -------------------------------------------------------------------------------- /assets/images/example-conversation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/assets/images/example-conversation.png -------------------------------------------------------------------------------- /browser_controller.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/browser_controller.html -------------------------------------------------------------------------------- /capture_image.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/capture_image.ps1 -------------------------------------------------------------------------------- /capture_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/capture_image.sh -------------------------------------------------------------------------------- /env-extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/env-extra.py -------------------------------------------------------------------------------- /include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/include/README -------------------------------------------------------------------------------- /include/camera_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/include/camera_config.h -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/lib/README -------------------------------------------------------------------------------- /lib/mcp/mcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/lib/mcp/mcp.cpp -------------------------------------------------------------------------------- /lib/mcp/mcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/lib/mcp/mcp.h -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/src/main.cpp -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/test/README -------------------------------------------------------------------------------- /test_cors.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/test_cors.ps1 -------------------------------------------------------------------------------- /test_cors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzeldent/esp32-cam-ai/HEAD/test_cors.sh --------------------------------------------------------------------------------