upload mutimodal

This commit is contained in:
Summer
2025-06-11 04:55:38 -07:00
parent b5c6bc3765
commit 3a70577223
41 changed files with 2883 additions and 143 deletions

View File

@@ -119,5 +119,12 @@ esp_err_t UVCStreamManager::setup()
}
ESP_LOGI(UVC_STREAM_TAG, "Initialized UVC Device");
return ESP_OK;
}
esp_err_t UVCStreamManager::start()
{
ESP_LOGI(UVC_STREAM_TAG, "Starting UVC streaming");
// UVC device is already initialized in setup(), just log that we're starting
return ESP_OK;
}

View File

@@ -41,6 +41,7 @@ class UVCStreamManager
public:
esp_err_t setup();
esp_err_t start();
};
#endif // UVCSTREAM_HPP