We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c12146 commit a050c0cCopy full SHA for a050c0c
homeassistant/components/iometer/entity.py
@@ -1,5 +1,6 @@
1
"""Base class for IOmeter entities."""
2
3
+from homeassistant.const import CONF_HOST
4
from homeassistant.helpers.device_registry import DeviceInfo
5
from homeassistant.helpers.update_coordinator import CoordinatorEntity
6
@@ -21,4 +22,5 @@ def __init__(self, coordinator: IOMeterCoordinator) -> None:
21
22
manufacturer="IOmeter GmbH",
23
model="IOmeter",
24
sw_version=coordinator.current_fw_version,
25
+ configuration_url=f"http://{coordinator.config_entry.data[CONF_HOST]}/",
26
)
0 commit comments