Add support for new JVC Projector auth method (#126453)
This commit is contained in:
parent
06d825d6c8
commit
c9571126a3
4 changed files with 5 additions and 4 deletions
|
@ -4,6 +4,7 @@ from __future__ import annotations
|
|||
|
||||
from datetime import timedelta
|
||||
import logging
|
||||
from typing import Any
|
||||
|
||||
from jvcprojector import (
|
||||
JvcProjector,
|
||||
|
@ -40,7 +41,7 @@ class JvcProjectorDataUpdateCoordinator(DataUpdateCoordinator[dict[str, str]]):
|
|||
self.device = device
|
||||
self.unique_id = format_mac(device.mac)
|
||||
|
||||
async def _async_update_data(self) -> dict[str, str]:
|
||||
async def _async_update_data(self) -> dict[str, Any]:
|
||||
"""Get the latest state data."""
|
||||
try:
|
||||
state = await self.device.get_state()
|
||||
|
|
|
@ -7,5 +7,5 @@
|
|||
"integration_type": "device",
|
||||
"iot_class": "local_polling",
|
||||
"loggers": ["jvcprojector"],
|
||||
"requirements": ["pyjvcprojector==1.0.12"]
|
||||
"requirements": ["pyjvcprojector==1.1.0"]
|
||||
}
|
||||
|
|
|
@ -1954,7 +1954,7 @@ pyisy==3.1.14
|
|||
pyitachip2ir==0.0.7
|
||||
|
||||
# homeassistant.components.jvc_projector
|
||||
pyjvcprojector==1.0.12
|
||||
pyjvcprojector==1.1.0
|
||||
|
||||
# homeassistant.components.kaleidescape
|
||||
pykaleidescape==1.0.1
|
||||
|
|
|
@ -1559,7 +1559,7 @@ pyiss==1.0.1
|
|||
pyisy==3.1.14
|
||||
|
||||
# homeassistant.components.jvc_projector
|
||||
pyjvcprojector==1.0.12
|
||||
pyjvcprojector==1.1.0
|
||||
|
||||
# homeassistant.components.kaleidescape
|
||||
pykaleidescape==1.0.1
|
||||
|
|
Loading…
Add table
Reference in a new issue