Merge pull request #19 from bwmp/patch-1

Comment out stream server start call
This commit is contained in:
Lorow
2025-10-27 11:31:29 +01:00
committed by GitHub

View File

@@ -113,7 +113,7 @@ CommandResult startStreamingCommand()
esp_timer_handle_t activateStreamingTimer;
esp_timer_create(&args, &activateStreamingTimer);
esp_timer_start_once(activateStreamingTimer, pdMS_TO_TICKS(150));
streamServer.startStreamServer();
// streamServer.startStreamServer();
return CommandResult::getSuccessResult("Streaming starting");
}