release/0.3.0 #10

Merged
pufereq merged 32 commits from release/0.3.0 into main 2025-09-19 13:28:10 +00:00
6 changed files with 273 additions and 55 deletions
Showing only changes of commit 54512d8393 - Show all commits

View File

@@ -52,7 +52,8 @@ def emit_polled_data(app, socketio):
import time
while True:
for client_id, data in backend.clients.items():
for client_id in backend.clients.keys():
data = backend.get_client_data(client_id)
socketio.emit("update_data", {client_id: data})
time.sleep(1)