Skip to content

Commit

Permalink
Add Hyperion device configuration URL (home-assistant#67495)
Browse files Browse the repository at this point in the history
* Adding device configuration url

* bump version
  • Loading branch information
jeeftor authored Mar 5, 2022
1 parent 9632cbe commit 8484060
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions homeassistant/components/hyperion/camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@ def device_info(self) -> DeviceInfo:
manufacturer=HYPERION_MANUFACTURER_NAME,
model=HYPERION_MODEL_NAME,
name=self._instance_name,
configuration_url=self._client.remote_url,
)


Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/hyperion/light.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ def device_info(self) -> DeviceInfo:
manufacturer=HYPERION_MANUFACTURER_NAME,
model=HYPERION_MODEL_NAME,
name=self._instance_name,
configuration_url=self._client.remote_url,
)

def _get_option(self, key: str) -> Any:
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/hyperion/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"domain": "hyperion",
"name": "Hyperion",
"quality_scale": "platinum",
"requirements": ["hyperion-py==0.7.4"],
"requirements": ["hyperion-py==0.7.5"],
"ssdp": [
{
"manufacturer": "Hyperion Open Source Ambient Lighting",
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/hyperion/switch.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ def device_info(self) -> DeviceInfo:
manufacturer=HYPERION_MANUFACTURER_NAME,
model=HYPERION_MODEL_NAME,
name=self._instance_name,
configuration_url=self._client.remote_url,
)

async def _async_send_set_component(self, value: bool) -> None:
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,7 @@ huisbaasje-client==0.1.0
hydrawiser==0.2

# homeassistant.components.hyperion
hyperion-py==0.7.4
hyperion-py==0.7.5

# homeassistant.components.iammeter
iammeter==0.1.7
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ huawei-lte-api==1.4.18
huisbaasje-client==0.1.0

# homeassistant.components.hyperion
hyperion-py==0.7.4
hyperion-py==0.7.5

# homeassistant.components.iaqualink
iaqualink==0.4.1
Expand Down

0 comments on commit 8484060

Please sign in to comment.