Added camera thread

This commit is contained in:
2026-07-29 22:03:28 +01:00
parent f1039db1ef
commit 4575071124

View File

@@ -415,6 +415,15 @@ def main() -> None:
ledThread.start() ledThread.start()
cameraThread = Thread(
target=cameraWorker,
name="camera_thread",
args=(state,),
daemon=True,
)
cameraThread.start()
if state.config.diskSerial != "": if state.config.diskSerial != "":
mountDisk(state) mountDisk(state)