diff --git a/homeassistant/components/mysensors/device.py b/homeassistant/components/mysensors/device.py index 0e6c5231bc8..35b15bc3595 100644 --- a/homeassistant/components/mysensors/device.py +++ b/homeassistant/components/mysensors/device.py @@ -131,6 +131,10 @@ class MySensorsDevice: @property def name(self) -> str: """Return the name of this entity.""" + child = self._child + + if child.description: + return str(child.description) return f"{self.node_name} {self.child_id}" @property