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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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