Add hardware ID to device model

This commit is contained in:
2022-10-16 20:43:10 +02:00
parent d5b5db07ad
commit 6b0f0d21fe
3 changed files with 9 additions and 5 deletions

View File

@@ -48,7 +48,7 @@ class PlejdLight(LightEntity, CoordinatorEntity):
"identifiers": {(DOMAIN, self.device.BLE_address)},
"name": self.device.name,
"manufacturer": "Plejd",
"model": self.device.model,
"model": f"{self.device.model} ({self.device.hardwareId})",
#"connections": ???,
"suggested_area": self.device.room,
"sw_version": self.device.firmware,