├── LICENSE ├── README.md ├── bin └── esp32cam-mirco_python_v1.11-665-gfb0141559-kaki5.bin └── src ├── WIFI ├── AP.py └── STA.py ├── boot.py ├── config.json ├── main.py ├── main_dev.py ├── main_v1.0.0.py ├── uasyncio ├── __init__.py └── core.py └── urequests.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITJoker233/Esp32-Cam_IP_Camera/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITJoker233/Esp32-Cam_IP_Camera/HEAD/README.md -------------------------------------------------------------------------------- /bin/esp32cam-mirco_python_v1.11-665-gfb0141559-kaki5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITJoker233/Esp32-Cam_IP_Camera/HEAD/bin/esp32cam-mirco_python_v1.11-665-gfb0141559-kaki5.bin -------------------------------------------------------------------------------- /src/WIFI/AP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITJoker233/Esp32-Cam_IP_Camera/HEAD/src/WIFI/AP.py -------------------------------------------------------------------------------- /src/WIFI/STA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITJoker233/Esp32-Cam_IP_Camera/HEAD/src/WIFI/STA.py -------------------------------------------------------------------------------- /src/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITJoker233/Esp32-Cam_IP_Camera/HEAD/src/boot.py -------------------------------------------------------------------------------- /src/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITJoker233/Esp32-Cam_IP_Camera/HEAD/src/config.json -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITJoker233/Esp32-Cam_IP_Camera/HEAD/src/main.py -------------------------------------------------------------------------------- /src/main_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITJoker233/Esp32-Cam_IP_Camera/HEAD/src/main_dev.py -------------------------------------------------------------------------------- /src/main_v1.0.0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITJoker233/Esp32-Cam_IP_Camera/HEAD/src/main_v1.0.0.py -------------------------------------------------------------------------------- /src/uasyncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITJoker233/Esp32-Cam_IP_Camera/HEAD/src/uasyncio/__init__.py -------------------------------------------------------------------------------- /src/uasyncio/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITJoker233/Esp32-Cam_IP_Camera/HEAD/src/uasyncio/core.py -------------------------------------------------------------------------------- /src/urequests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITJoker233/Esp32-Cam_IP_Camera/HEAD/src/urequests.py --------------------------------------------------------------------------------