Update JVC Projector polling time to be more responsive for automations (#113765)

This commit is contained in:
Massimo Savazzi
2024-03-22 14:00:10 +01:00
committed by GitHub
parent 9ca253213c
commit 16283aad49

View File

@@ -21,8 +21,8 @@ from .const import NAME
_LOGGER = logging.getLogger(__name__) _LOGGER = logging.getLogger(__name__)
INTERVAL_SLOW = timedelta(seconds=60) INTERVAL_SLOW = timedelta(seconds=10)
INTERVAL_FAST = timedelta(seconds=6) INTERVAL_FAST = timedelta(seconds=5)
class JvcProjectorDataUpdateCoordinator(DataUpdateCoordinator[dict[str, str]]): class JvcProjectorDataUpdateCoordinator(DataUpdateCoordinator[dict[str, str]]):