Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for new JVC Projector auth method #126453

Merged
merged 3 commits into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -1978,7 +1978,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 @@ -1586,7 +1586,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