Skip to content

Commit

Permalink
Add support for new JVC Projector auth method (#126453)
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveEasley authored and frenck committed Sep 23, 2024
1 parent 06d825d commit c957112
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion homeassistant/components/jvc_projector/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

from datetime import timedelta
import logging
from typing import Any

from jvcprojector import (
JvcProjector,
Expand Down Expand Up @@ -40,7 +41,7 @@ def __init__(self, hass: HomeAssistant, device: JvcProjector) -> None:
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()
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/jvc_projector/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"integration_type": "device",
"iot_class": "local_polling",
"loggers": ["jvcprojector"],
"requirements": ["pyjvcprojector==1.0.12"]
"requirements": ["pyjvcprojector==1.1.0"]
}
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c957112

Please sign in to comment.