* Start Web server that allows to stream motion JPEG. The port number can be * specified. * @param port HTTP port number * @return ESP_OK * @return ESP_ERR_HTTPD_TASK */
| 94 | * @return ESP_ERR_HTTPD_TASK |
| 95 | */ |
| 96 | esp_err_t ESP32WebCam::startCameraServer(const uint16_t port) { |
| 97 | setServerPort(port); |
| 98 | return startCameraServer(nullptr, nullptr, nullptr); |
| 99 | } |
| 100 | |
| 101 | /** |
| 102 | * Start Web server that allows to stream motion JPEG. |
nothing calls this directly
no outgoing calls
no test coverage detected