Reduce debounce time for scene status emission from 50ms to 25ms for improved responsiveness.

This commit is contained in:
vegu-ai-tools
2025-11-20 19:43:53 +02:00
parent 7e376e02b0
commit 11c1427d9a

View File

@@ -1462,7 +1462,7 @@ class Scene(Emitter):
async def _debounced_emit_status(self, restored: bool = False):
"""Internal method for debounced emission"""
await asyncio.sleep(0.05) # 50ms debounce
await asyncio.sleep(0.025) # 25ms debounce
self._emit_status_debounce_task = None
self._do_emit_status(restored)