parent
d081e5ab3a
commit
89e8e1a4c7
1 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ _LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
ATTR_BRAND = 'Brand'
|
ATTR_BRAND = 'Brand'
|
||||||
ATTR_HZ = 'GHz Advertised'
|
ATTR_HZ = 'GHz Advertised'
|
||||||
ATTR_VENDOR = 'Vendor ID'
|
ATTR_ARCH = 'arch'
|
||||||
|
|
||||||
DEFAULT_NAME = 'CPU speed'
|
DEFAULT_NAME = 'CPU speed'
|
||||||
ICON = 'mdi:pulse'
|
ICON = 'mdi:pulse'
|
||||||
|
@ -67,7 +67,7 @@ class CpuSpeedSensor(Entity):
|
||||||
"""Return the state attributes."""
|
"""Return the state attributes."""
|
||||||
if self.info is not None:
|
if self.info is not None:
|
||||||
return {
|
return {
|
||||||
ATTR_VENDOR: self.info['vendor_id'],
|
ATTR_ARCH: self.info['arch'],
|
||||||
ATTR_BRAND: self.info['brand'],
|
ATTR_BRAND: self.info['brand'],
|
||||||
ATTR_HZ: round(self.info['hz_advertised_raw'][0]/10**9, 2)
|
ATTR_HZ: round(self.info['hz_advertised_raw'][0]/10**9, 2)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue