mirror of
https://github.com/home-assistant/core.git
synced 2025-07-27 15:17:35 +00:00
Add device_class to Tibber sensor (#41572)
This commit is contained in:
parent
3a6c9b43ab
commit
9299f0a8b2
@ -6,6 +6,7 @@ from random import randrange
|
|||||||
|
|
||||||
import aiohttp
|
import aiohttp
|
||||||
|
|
||||||
|
from homeassistant.components.sensor import DEVICE_CLASS_POWER
|
||||||
from homeassistant.const import POWER_WATT
|
from homeassistant.const import POWER_WATT
|
||||||
from homeassistant.exceptions import PlatformNotReady
|
from homeassistant.exceptions import PlatformNotReady
|
||||||
from homeassistant.helpers.entity import Entity
|
from homeassistant.helpers.entity import Entity
|
||||||
@ -235,3 +236,8 @@ class TibberSensorRT(TibberSensor):
|
|||||||
def unique_id(self):
|
def unique_id(self):
|
||||||
"""Return a unique ID."""
|
"""Return a unique ID."""
|
||||||
return f"{self.device_id}_rt_consumption"
|
return f"{self.device_id}_rt_consumption"
|
||||||
|
|
||||||
|
@property
|
||||||
|
def device_class(self):
|
||||||
|
"""Return the device class of the sensor."""
|
||||||
|
return DEVICE_CLASS_POWER
|
||||||
|
Loading…
x
Reference in New Issue
Block a user