Add MAC address to bsblan device info (#103180)
parent
12c5aec5e6
commit
56b4369f44
|
@ -5,7 +5,11 @@ from bsblan import BSBLAN, Device, Info, StaticState
|
|||
|
||||
from homeassistant.config_entries import ConfigEntry
|
||||
from homeassistant.const import CONF_HOST
|
||||
from homeassistant.helpers.device_registry import DeviceInfo, format_mac
|
||||
from homeassistant.helpers.device_registry import (
|
||||
CONNECTION_NETWORK_MAC,
|
||||
DeviceInfo,
|
||||
format_mac,
|
||||
)
|
||||
from homeassistant.helpers.entity import Entity
|
||||
|
||||
from .const import DOMAIN
|
||||
|
@ -26,6 +30,7 @@ class BSBLANEntity(Entity):
|
|||
self.client = client
|
||||
|
||||
self._attr_device_info = DeviceInfo(
|
||||
connections={(CONNECTION_NETWORK_MAC, format_mac(device.MAC))},
|
||||
identifiers={(DOMAIN, format_mac(device.MAC))},
|
||||
manufacturer="BSBLAN Inc.",
|
||||
model=info.device_identification.value,
|
||||
|
|
Loading…
Reference in New Issue