mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 03:07:37 +00:00
New sensor platform integration for Orange and Rockland Utility smart energy meter (#27571)
* New sensor platform integration for Orange and Rockland Utility smart energy meter * New sensor platform integration for Orange and Rockland Utility smart energy meter * bumped the oru py version to 0.1.9 * Added PLATFORM_SCHEMA Adde unique_id property Changed logger level from info to debug when printing the updated sensor value Set the SCAN_INTERVAL to 15 mins Added exception handling durin init when creating the oru meter instance * Various fixes base on the PR review + Added SCAN_INTERVAL for 15 mins * fixed path to documentation
This commit is contained in:
parent
b8e00925e7
commit
c8f6484095
@ -485,6 +485,7 @@ omit =
|
|||||||
homeassistant/components/openweathermap/weather.py
|
homeassistant/components/openweathermap/weather.py
|
||||||
homeassistant/components/opple/light.py
|
homeassistant/components/opple/light.py
|
||||||
homeassistant/components/orangepi_gpio/*
|
homeassistant/components/orangepi_gpio/*
|
||||||
|
homeassistant/components/oru/*
|
||||||
homeassistant/components/orvibo/switch.py
|
homeassistant/components/orvibo/switch.py
|
||||||
homeassistant/components/osramlightify/light.py
|
homeassistant/components/osramlightify/light.py
|
||||||
homeassistant/components/otp/sensor.py
|
homeassistant/components/otp/sensor.py
|
||||||
|
@ -215,6 +215,7 @@ homeassistant/components/opentherm_gw/* @mvn23
|
|||||||
homeassistant/components/openuv/* @bachya
|
homeassistant/components/openuv/* @bachya
|
||||||
homeassistant/components/openweathermap/* @fabaff
|
homeassistant/components/openweathermap/* @fabaff
|
||||||
homeassistant/components/orangepi_gpio/* @pascallj
|
homeassistant/components/orangepi_gpio/* @pascallj
|
||||||
|
homeassistant/components/oru/* @bvlaicu
|
||||||
homeassistant/components/owlet/* @oblogic7
|
homeassistant/components/owlet/* @oblogic7
|
||||||
homeassistant/components/panel_custom/* @home-assistant/frontend
|
homeassistant/components/panel_custom/* @home-assistant/frontend
|
||||||
homeassistant/components/panel_iframe/* @home-assistant/frontend
|
homeassistant/components/panel_iframe/* @home-assistant/frontend
|
||||||
|
1
homeassistant/components/oru/__init__.py
Normal file
1
homeassistant/components/oru/__init__.py
Normal file
@ -0,0 +1 @@
|
|||||||
|
"""The Orange and Rockland Utility smart energy meter integration."""
|
8
homeassistant/components/oru/manifest.json
Normal file
8
homeassistant/components/oru/manifest.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"domain": "oru",
|
||||||
|
"name": "Orange and Rockland Utility Smart Energy Meter Sensor",
|
||||||
|
"documentation": "https://www.home-assistant.io/integrations/oru",
|
||||||
|
"dependencies": [],
|
||||||
|
"codeowners": ["@bvlaicu"],
|
||||||
|
"requirements": ["oru==0.1.9"]
|
||||||
|
}
|
92
homeassistant/components/oru/sensor.py
Normal file
92
homeassistant/components/oru/sensor.py
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
"""Platform for sensor integration."""
|
||||||
|
from datetime import timedelta
|
||||||
|
import logging
|
||||||
|
|
||||||
|
import voluptuous as vol
|
||||||
|
|
||||||
|
from oru import Meter
|
||||||
|
from oru import MeterError
|
||||||
|
|
||||||
|
from homeassistant.components.sensor import PLATFORM_SCHEMA
|
||||||
|
import homeassistant.helpers.config_validation as cv
|
||||||
|
from homeassistant.const import ENERGY_KILO_WATT_HOUR
|
||||||
|
from homeassistant.helpers.entity import Entity
|
||||||
|
|
||||||
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
CONF_METER_NUMBER = "meter_number"
|
||||||
|
|
||||||
|
SCAN_INTERVAL = timedelta(minutes=15)
|
||||||
|
|
||||||
|
SENSOR_NAME = "ORU Current Energy Usage"
|
||||||
|
SENSOR_ICON = "mdi:counter"
|
||||||
|
|
||||||
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({vol.Required(CONF_METER_NUMBER): cv.string})
|
||||||
|
|
||||||
|
|
||||||
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
||||||
|
"""Set up the sensor platform."""
|
||||||
|
|
||||||
|
meter_number = config[CONF_METER_NUMBER]
|
||||||
|
|
||||||
|
try:
|
||||||
|
meter = Meter(meter_number)
|
||||||
|
|
||||||
|
except MeterError:
|
||||||
|
_LOGGER.error("Unable to create Oru meter")
|
||||||
|
return
|
||||||
|
|
||||||
|
add_entities([CurrentEnergyUsageSensor(meter)], True)
|
||||||
|
|
||||||
|
_LOGGER.debug("Oru meter_number = %s", meter_number)
|
||||||
|
|
||||||
|
|
||||||
|
class CurrentEnergyUsageSensor(Entity):
|
||||||
|
"""Representation of the sensor."""
|
||||||
|
|
||||||
|
def __init__(self, meter):
|
||||||
|
"""Initialize the sensor."""
|
||||||
|
self._state = None
|
||||||
|
self._available = None
|
||||||
|
self.meter = meter
|
||||||
|
|
||||||
|
@property
|
||||||
|
def unique_id(self):
|
||||||
|
"""Return a unique, HASS-friendly identifier for this entity."""
|
||||||
|
return self.meter.meter_id
|
||||||
|
|
||||||
|
@property
|
||||||
|
def name(self):
|
||||||
|
"""Return the name of the sensor."""
|
||||||
|
return SENSOR_NAME
|
||||||
|
|
||||||
|
@property
|
||||||
|
def icon(self):
|
||||||
|
"""Return the icon of the sensor."""
|
||||||
|
return SENSOR_ICON
|
||||||
|
|
||||||
|
@property
|
||||||
|
def state(self):
|
||||||
|
"""Return the state of the sensor."""
|
||||||
|
return self._state
|
||||||
|
|
||||||
|
@property
|
||||||
|
def unit_of_measurement(self):
|
||||||
|
"""Return the unit of measurement."""
|
||||||
|
return ENERGY_KILO_WATT_HOUR
|
||||||
|
|
||||||
|
def update(self):
|
||||||
|
"""Fetch new state data for the sensor."""
|
||||||
|
try:
|
||||||
|
last_read = self.meter.last_read()
|
||||||
|
|
||||||
|
self._state = last_read
|
||||||
|
self._available = True
|
||||||
|
|
||||||
|
_LOGGER.debug(
|
||||||
|
"%s = %s %s", self.name, self._state, self.unit_of_measurement
|
||||||
|
)
|
||||||
|
except MeterError as err:
|
||||||
|
self._available = False
|
||||||
|
|
||||||
|
_LOGGER.error("Unexpected oru meter error: %s", err)
|
@ -916,6 +916,9 @@ openwebifpy==3.1.1
|
|||||||
# homeassistant.components.luci
|
# homeassistant.components.luci
|
||||||
openwrt-luci-rpc==1.1.1
|
openwrt-luci-rpc==1.1.1
|
||||||
|
|
||||||
|
# homeassistant.components.oru
|
||||||
|
oru==0.1.9
|
||||||
|
|
||||||
# homeassistant.components.orvibo
|
# homeassistant.components.orvibo
|
||||||
orvibo==1.1.1
|
orvibo==1.1.1
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user