2019-04-03 15:40:03 +00:00
|
|
|
"""Support for SolarEdge Monitoring API."""
|
2020-06-23 16:06:31 +00:00
|
|
|
from datetime import date, datetime
|
2018-12-19 08:56:45 +00:00
|
|
|
import logging
|
2019-12-05 05:18:12 +00:00
|
|
|
|
|
|
|
from requests.exceptions import ConnectTimeout, HTTPError
|
2019-09-08 19:49:20 +00:00
|
|
|
import solaredge
|
2019-12-05 05:18:12 +00:00
|
|
|
from stringcase import snakecase
|
2018-12-19 08:56:45 +00:00
|
|
|
|
2020-08-09 21:28:45 +00:00
|
|
|
from homeassistant.const import CONF_API_KEY, DEVICE_CLASS_BATTERY, DEVICE_CLASS_POWER
|
2018-12-19 08:56:45 +00:00
|
|
|
from homeassistant.helpers.entity import Entity
|
|
|
|
from homeassistant.util import Throttle
|
|
|
|
|
2019-09-08 19:49:20 +00:00
|
|
|
from .const import (
|
|
|
|
CONF_SITE_ID,
|
|
|
|
DETAILS_UPDATE_DELAY,
|
2020-06-23 16:06:31 +00:00
|
|
|
ENERGY_DETAILS_DELAY,
|
2019-09-08 19:49:20 +00:00
|
|
|
INVENTORY_UPDATE_DELAY,
|
2019-12-05 05:18:12 +00:00
|
|
|
OVERVIEW_UPDATE_DELAY,
|
2019-09-08 19:49:20 +00:00
|
|
|
POWER_FLOW_UPDATE_DELAY,
|
|
|
|
SENSOR_TYPES,
|
2019-07-31 19:25:30 +00:00
|
|
|
)
|
2018-12-19 08:56:45 +00:00
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2019-09-08 19:49:20 +00:00
|
|
|
async def async_setup_entry(hass, entry, async_add_entities):
|
|
|
|
"""Add an solarEdge entry."""
|
|
|
|
# Add the needed sensors to hass
|
|
|
|
api = solaredge.Solaredge(entry.data[CONF_API_KEY])
|
2018-12-19 08:56:45 +00:00
|
|
|
|
|
|
|
# Check if api can be reached and site is active
|
|
|
|
try:
|
2019-09-08 19:49:20 +00:00
|
|
|
response = await hass.async_add_executor_job(
|
|
|
|
api.get_details, entry.data[CONF_SITE_ID]
|
|
|
|
)
|
2019-07-31 19:25:30 +00:00
|
|
|
if response["details"]["status"].lower() != "active":
|
2018-12-19 08:56:45 +00:00
|
|
|
_LOGGER.error("SolarEdge site is not active")
|
|
|
|
return
|
|
|
|
_LOGGER.debug("Credentials correct and site is active")
|
|
|
|
except KeyError:
|
2019-12-31 13:56:23 +00:00
|
|
|
_LOGGER.error("Missing details data in SolarEdge response")
|
2018-12-19 08:56:45 +00:00
|
|
|
return
|
|
|
|
except (ConnectTimeout, HTTPError):
|
|
|
|
_LOGGER.error("Could not retrieve details from SolarEdge API")
|
|
|
|
return
|
|
|
|
|
2019-09-08 19:49:20 +00:00
|
|
|
sensor_factory = SolarEdgeSensorFactory(entry.title, entry.data[CONF_SITE_ID], api)
|
2018-12-19 08:56:45 +00:00
|
|
|
entities = []
|
2019-09-08 19:49:20 +00:00
|
|
|
for sensor_key in SENSOR_TYPES:
|
2019-03-27 21:08:52 +00:00
|
|
|
sensor = sensor_factory.create_sensor(sensor_key)
|
|
|
|
if sensor is not None:
|
|
|
|
entities.append(sensor)
|
2019-09-08 19:49:20 +00:00
|
|
|
async_add_entities(entities)
|
2018-12-19 08:56:45 +00:00
|
|
|
|
|
|
|
|
2019-03-27 21:08:52 +00:00
|
|
|
class SolarEdgeSensorFactory:
|
|
|
|
"""Factory which creates sensors based on the sensor_key."""
|
|
|
|
|
|
|
|
def __init__(self, platform_name, site_id, api):
|
|
|
|
"""Initialize the factory."""
|
|
|
|
self.platform_name = platform_name
|
|
|
|
|
|
|
|
details = SolarEdgeDetailsDataService(api, site_id)
|
|
|
|
overview = SolarEdgeOverviewDataService(api, site_id)
|
|
|
|
inventory = SolarEdgeInventoryDataService(api, site_id)
|
|
|
|
flow = SolarEdgePowerFlowDataService(api, site_id)
|
2020-06-23 16:06:31 +00:00
|
|
|
energy = SolarEdgeEnergyDetailsService(api, site_id)
|
2019-03-27 21:08:52 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
self.services = {"site_details": (SolarEdgeDetailsSensor, details)}
|
2019-03-27 21:08:52 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
for key in [
|
|
|
|
"lifetime_energy",
|
|
|
|
"energy_this_year",
|
|
|
|
"energy_this_month",
|
|
|
|
"energy_today",
|
|
|
|
"current_power",
|
|
|
|
]:
|
2019-03-27 21:08:52 +00:00
|
|
|
self.services[key] = (SolarEdgeOverviewSensor, overview)
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
for key in ["meters", "sensors", "gateways", "batteries", "inverters"]:
|
2019-03-27 21:08:52 +00:00
|
|
|
self.services[key] = (SolarEdgeInventorySensor, inventory)
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
for key in ["power_consumption", "solar_power", "grid_power", "storage_power"]:
|
2019-03-27 21:08:52 +00:00
|
|
|
self.services[key] = (SolarEdgePowerFlowSensor, flow)
|
|
|
|
|
2020-08-09 21:28:45 +00:00
|
|
|
for key in ["storage_level"]:
|
|
|
|
self.services[key] = (SolarEdgeStorageLevelSensor, flow)
|
|
|
|
|
2020-06-23 16:06:31 +00:00
|
|
|
for key in [
|
|
|
|
"purchased_power",
|
|
|
|
"production_power",
|
|
|
|
"feedin_power",
|
|
|
|
"consumption_power",
|
|
|
|
"selfconsumption_power",
|
|
|
|
]:
|
|
|
|
self.services[key] = (SolarEdgeEnergyDetailsSensor, energy)
|
|
|
|
|
2019-03-27 21:08:52 +00:00
|
|
|
def create_sensor(self, sensor_key):
|
|
|
|
"""Create and return a sensor based on the sensor_key."""
|
|
|
|
sensor_class, service = self.services[sensor_key]
|
|
|
|
|
|
|
|
return sensor_class(self.platform_name, sensor_key, service)
|
|
|
|
|
|
|
|
|
2018-12-19 08:56:45 +00:00
|
|
|
class SolarEdgeSensor(Entity):
|
2019-03-27 21:08:52 +00:00
|
|
|
"""Abstract class for a solaredge sensor."""
|
2018-12-19 08:56:45 +00:00
|
|
|
|
2019-03-27 21:08:52 +00:00
|
|
|
def __init__(self, platform_name, sensor_key, data_service):
|
2018-12-19 08:56:45 +00:00
|
|
|
"""Initialize the sensor."""
|
|
|
|
self.platform_name = platform_name
|
|
|
|
self.sensor_key = sensor_key
|
2019-03-27 21:08:52 +00:00
|
|
|
self.data_service = data_service
|
|
|
|
|
2018-12-19 08:56:45 +00:00
|
|
|
self._state = None
|
|
|
|
|
|
|
|
self._unit_of_measurement = SENSOR_TYPES[self.sensor_key][2]
|
2019-03-27 21:08:52 +00:00
|
|
|
self._icon = SENSOR_TYPES[self.sensor_key][3]
|
2018-12-19 08:56:45 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
|
|
|
"""Return the name."""
|
2019-07-31 19:25:30 +00:00
|
|
|
return "{} ({})".format(self.platform_name, SENSOR_TYPES[self.sensor_key][1])
|
2018-12-19 08:56:45 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def unit_of_measurement(self):
|
|
|
|
"""Return the unit of measurement."""
|
|
|
|
return self._unit_of_measurement
|
|
|
|
|
|
|
|
@property
|
|
|
|
def icon(self):
|
|
|
|
"""Return the sensor icon."""
|
2019-03-27 21:08:52 +00:00
|
|
|
return self._icon
|
2018-12-19 08:56:45 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def state(self):
|
|
|
|
"""Return the state of the sensor."""
|
|
|
|
return self._state
|
|
|
|
|
2019-03-27 21:08:52 +00:00
|
|
|
|
|
|
|
class SolarEdgeOverviewSensor(SolarEdgeSensor):
|
|
|
|
"""Representation of an SolarEdge Monitoring API overview sensor."""
|
|
|
|
|
|
|
|
def __init__(self, platform_name, sensor_key, data_service):
|
|
|
|
"""Initialize the overview sensor."""
|
|
|
|
super().__init__(platform_name, sensor_key, data_service)
|
|
|
|
|
|
|
|
self._json_key = SENSOR_TYPES[self.sensor_key][0]
|
|
|
|
|
2018-12-19 08:56:45 +00:00
|
|
|
def update(self):
|
|
|
|
"""Get the latest data from the sensor and update the state."""
|
2019-03-27 21:08:52 +00:00
|
|
|
self.data_service.update()
|
|
|
|
self._state = self.data_service.data[self._json_key]
|
|
|
|
|
|
|
|
|
|
|
|
class SolarEdgeDetailsSensor(SolarEdgeSensor):
|
|
|
|
"""Representation of an SolarEdge Monitoring API details sensor."""
|
|
|
|
|
|
|
|
def __init__(self, platform_name, sensor_key, data_service):
|
|
|
|
"""Initialize the details sensor."""
|
|
|
|
super().__init__(platform_name, sensor_key, data_service)
|
|
|
|
|
|
|
|
self._attributes = {}
|
|
|
|
|
|
|
|
@property
|
|
|
|
def device_state_attributes(self):
|
|
|
|
"""Return the state attributes."""
|
|
|
|
return self._attributes
|
|
|
|
|
|
|
|
def update(self):
|
|
|
|
"""Get the latest details and update state and attributes."""
|
|
|
|
self.data_service.update()
|
|
|
|
self._state = self.data_service.data
|
|
|
|
self._attributes = self.data_service.attributes
|
2018-12-19 08:56:45 +00:00
|
|
|
|
|
|
|
|
2019-03-27 21:08:52 +00:00
|
|
|
class SolarEdgeInventorySensor(SolarEdgeSensor):
|
|
|
|
"""Representation of an SolarEdge Monitoring API inventory sensor."""
|
|
|
|
|
|
|
|
def __init__(self, platform_name, sensor_key, data_service):
|
|
|
|
"""Initialize the inventory sensor."""
|
|
|
|
super().__init__(platform_name, sensor_key, data_service)
|
|
|
|
|
|
|
|
self._json_key = SENSOR_TYPES[self.sensor_key][0]
|
|
|
|
|
|
|
|
self._attributes = {}
|
|
|
|
|
|
|
|
@property
|
|
|
|
def device_state_attributes(self):
|
|
|
|
"""Return the state attributes."""
|
|
|
|
return self._attributes
|
|
|
|
|
|
|
|
def update(self):
|
|
|
|
"""Get the latest inventory data and update state and attributes."""
|
|
|
|
self.data_service.update()
|
|
|
|
self._state = self.data_service.data[self._json_key]
|
|
|
|
self._attributes = self.data_service.attributes[self._json_key]
|
|
|
|
|
|
|
|
|
2020-06-23 16:06:31 +00:00
|
|
|
class SolarEdgeEnergyDetailsSensor(SolarEdgeSensor):
|
|
|
|
"""Representation of an SolarEdge Monitoring API power flow sensor."""
|
|
|
|
|
|
|
|
def __init__(self, platform_name, sensor_key, data_service):
|
|
|
|
"""Initialize the power flow sensor."""
|
|
|
|
super().__init__(platform_name, sensor_key, data_service)
|
|
|
|
|
|
|
|
self._json_key = SENSOR_TYPES[self.sensor_key][0]
|
|
|
|
|
|
|
|
self._attributes = {}
|
|
|
|
|
|
|
|
@property
|
|
|
|
def device_state_attributes(self):
|
|
|
|
"""Return the state attributes."""
|
|
|
|
return self._attributes
|
|
|
|
|
|
|
|
def update(self):
|
|
|
|
"""Get the latest inventory data and update state and attributes."""
|
|
|
|
self.data_service.update()
|
|
|
|
self._state = self.data_service.data.get(self._json_key)
|
|
|
|
self._attributes = self.data_service.attributes.get(self._json_key)
|
|
|
|
self._unit_of_measurement = self.data_service.unit
|
|
|
|
|
|
|
|
|
2019-03-27 21:08:52 +00:00
|
|
|
class SolarEdgePowerFlowSensor(SolarEdgeSensor):
|
|
|
|
"""Representation of an SolarEdge Monitoring API power flow sensor."""
|
|
|
|
|
|
|
|
def __init__(self, platform_name, sensor_key, data_service):
|
|
|
|
"""Initialize the power flow sensor."""
|
|
|
|
super().__init__(platform_name, sensor_key, data_service)
|
|
|
|
|
|
|
|
self._json_key = SENSOR_TYPES[self.sensor_key][0]
|
|
|
|
|
|
|
|
self._attributes = {}
|
|
|
|
|
|
|
|
@property
|
|
|
|
def device_state_attributes(self):
|
|
|
|
"""Return the state attributes."""
|
|
|
|
return self._attributes
|
|
|
|
|
2020-08-09 21:28:45 +00:00
|
|
|
@property
|
|
|
|
def device_class(self):
|
|
|
|
"""Device Class."""
|
|
|
|
return DEVICE_CLASS_POWER
|
|
|
|
|
2019-03-27 21:08:52 +00:00
|
|
|
def update(self):
|
|
|
|
"""Get the latest inventory data and update state and attributes."""
|
|
|
|
self.data_service.update()
|
|
|
|
self._state = self.data_service.data.get(self._json_key)
|
|
|
|
self._attributes = self.data_service.attributes.get(self._json_key)
|
|
|
|
self._unit_of_measurement = self.data_service.unit
|
|
|
|
|
|
|
|
|
2020-08-09 21:28:45 +00:00
|
|
|
class SolarEdgeStorageLevelSensor(SolarEdgeSensor):
|
|
|
|
"""Representation of an SolarEdge Monitoring API storage level sensor."""
|
|
|
|
|
|
|
|
def __init__(self, platform_name, sensor_key, data_service):
|
|
|
|
"""Initialize the storage level sensor."""
|
|
|
|
super().__init__(platform_name, sensor_key, data_service)
|
|
|
|
|
|
|
|
self._json_key = SENSOR_TYPES[self.sensor_key][0]
|
|
|
|
|
|
|
|
@property
|
|
|
|
def device_class(self):
|
|
|
|
"""Return the device_class of the device."""
|
|
|
|
return DEVICE_CLASS_BATTERY
|
|
|
|
|
|
|
|
def update(self):
|
|
|
|
"""Get the latest inventory data and update state and attributes."""
|
|
|
|
self.data_service.update()
|
|
|
|
attr = self.data_service.attributes.get(self._json_key)
|
|
|
|
self._state = attr["soc"]
|
|
|
|
|
|
|
|
|
2019-03-27 21:08:52 +00:00
|
|
|
class SolarEdgeDataService:
|
2018-12-19 08:56:45 +00:00
|
|
|
"""Get and update the latest data."""
|
|
|
|
|
2019-03-27 21:08:52 +00:00
|
|
|
def __init__(self, api, site_id):
|
2018-12-19 08:56:45 +00:00
|
|
|
"""Initialize the data object."""
|
|
|
|
self.api = api
|
|
|
|
self.site_id = site_id
|
|
|
|
|
2019-03-27 21:08:52 +00:00
|
|
|
self.data = {}
|
|
|
|
self.attributes = {}
|
|
|
|
|
|
|
|
|
|
|
|
class SolarEdgeOverviewDataService(SolarEdgeDataService):
|
|
|
|
"""Get and update the latest overview data."""
|
|
|
|
|
|
|
|
@Throttle(OVERVIEW_UPDATE_DELAY)
|
2018-12-19 08:56:45 +00:00
|
|
|
def update(self):
|
|
|
|
"""Update the data from the SolarEdge Monitoring API."""
|
|
|
|
try:
|
|
|
|
data = self.api.get_overview(self.site_id)
|
2019-07-31 19:25:30 +00:00
|
|
|
overview = data["overview"]
|
2018-12-19 08:56:45 +00:00
|
|
|
except KeyError:
|
|
|
|
_LOGGER.error("Missing overview data, skipping update")
|
|
|
|
return
|
|
|
|
except (ConnectTimeout, HTTPError):
|
|
|
|
_LOGGER.error("Could not retrieve data, skipping update")
|
|
|
|
return
|
|
|
|
|
|
|
|
self.data = {}
|
|
|
|
|
|
|
|
for key, value in overview.items():
|
2019-07-31 19:25:30 +00:00
|
|
|
if key in ["lifeTimeData", "lastYearData", "lastMonthData", "lastDayData"]:
|
|
|
|
data = value["energy"]
|
|
|
|
elif key in ["currentPower"]:
|
|
|
|
data = value["power"]
|
2019-03-27 21:08:52 +00:00
|
|
|
else:
|
|
|
|
data = value
|
|
|
|
self.data[key] = data
|
2018-12-19 08:56:45 +00:00
|
|
|
|
2019-03-27 21:08:52 +00:00
|
|
|
_LOGGER.debug("Updated SolarEdge overview: %s", self.data)
|
|
|
|
|
|
|
|
|
|
|
|
class SolarEdgeDetailsDataService(SolarEdgeDataService):
|
|
|
|
"""Get and update the latest details data."""
|
|
|
|
|
|
|
|
def __init__(self, api, site_id):
|
|
|
|
"""Initialize the details data service."""
|
|
|
|
super().__init__(api, site_id)
|
|
|
|
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
@Throttle(DETAILS_UPDATE_DELAY)
|
|
|
|
def update(self):
|
|
|
|
"""Update the data from the SolarEdge Monitoring API."""
|
|
|
|
|
|
|
|
try:
|
|
|
|
data = self.api.get_details(self.site_id)
|
2019-07-31 19:25:30 +00:00
|
|
|
details = data["details"]
|
2019-03-27 21:08:52 +00:00
|
|
|
except KeyError:
|
|
|
|
_LOGGER.error("Missing details data, skipping update")
|
|
|
|
return
|
|
|
|
except (ConnectTimeout, HTTPError):
|
|
|
|
_LOGGER.error("Could not retrieve data, skipping update")
|
|
|
|
return
|
|
|
|
|
|
|
|
self.data = None
|
|
|
|
self.attributes = {}
|
|
|
|
|
|
|
|
for key, value in details.items():
|
|
|
|
key = snakecase(key)
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
if key in ["primary_module"]:
|
2019-03-27 21:08:52 +00:00
|
|
|
for module_key, module_value in value.items():
|
|
|
|
self.attributes[snakecase(module_key)] = module_value
|
2019-07-31 19:25:30 +00:00
|
|
|
elif key in [
|
|
|
|
"peak_power",
|
|
|
|
"type",
|
|
|
|
"name",
|
|
|
|
"last_update_time",
|
|
|
|
"installation_date",
|
|
|
|
]:
|
2019-03-27 21:08:52 +00:00
|
|
|
self.attributes[key] = value
|
2019-07-31 19:25:30 +00:00
|
|
|
elif key == "status":
|
2019-03-27 21:08:52 +00:00
|
|
|
self.data = value
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
_LOGGER.debug("Updated SolarEdge details: %s, %s", self.data, self.attributes)
|
2019-03-27 21:08:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SolarEdgeInventoryDataService(SolarEdgeDataService):
|
|
|
|
"""Get and update the latest inventory data."""
|
|
|
|
|
|
|
|
@Throttle(INVENTORY_UPDATE_DELAY)
|
|
|
|
def update(self):
|
|
|
|
"""Update the data from the SolarEdge Monitoring API."""
|
|
|
|
try:
|
|
|
|
data = self.api.get_inventory(self.site_id)
|
2019-07-31 19:25:30 +00:00
|
|
|
inventory = data["Inventory"]
|
2019-03-27 21:08:52 +00:00
|
|
|
except KeyError:
|
|
|
|
_LOGGER.error("Missing inventory data, skipping update")
|
|
|
|
return
|
|
|
|
except (ConnectTimeout, HTTPError):
|
|
|
|
_LOGGER.error("Could not retrieve data, skipping update")
|
|
|
|
return
|
|
|
|
|
|
|
|
self.data = {}
|
|
|
|
self.attributes = {}
|
|
|
|
|
|
|
|
for key, value in inventory.items():
|
|
|
|
self.data[key] = len(value)
|
|
|
|
self.attributes[key] = {key: value}
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
_LOGGER.debug("Updated SolarEdge inventory: %s, %s", self.data, self.attributes)
|
2019-03-27 21:08:52 +00:00
|
|
|
|
|
|
|
|
2020-06-23 16:06:31 +00:00
|
|
|
class SolarEdgeEnergyDetailsService(SolarEdgeDataService):
|
|
|
|
"""Get and update the latest power flow data."""
|
|
|
|
|
|
|
|
def __init__(self, api, site_id):
|
|
|
|
"""Initialize the power flow data service."""
|
|
|
|
super().__init__(api, site_id)
|
|
|
|
|
|
|
|
self.unit = None
|
|
|
|
|
|
|
|
@Throttle(ENERGY_DETAILS_DELAY)
|
|
|
|
def update(self):
|
|
|
|
"""Update the data from the SolarEdge Monitoring API."""
|
|
|
|
try:
|
|
|
|
now = datetime.now()
|
|
|
|
today = date.today()
|
|
|
|
midnight = datetime.combine(today, datetime.min.time())
|
|
|
|
data = self.api.get_energy_details(
|
|
|
|
self.site_id,
|
|
|
|
midnight,
|
|
|
|
now.strftime("%Y-%m-%d %H:%M:%S"),
|
|
|
|
meters=None,
|
|
|
|
time_unit="DAY",
|
|
|
|
)
|
|
|
|
energy_details = data["energyDetails"]
|
|
|
|
except KeyError:
|
|
|
|
_LOGGER.error("Missing power flow data, skipping update")
|
|
|
|
return
|
|
|
|
except (ConnectTimeout, HTTPError):
|
|
|
|
_LOGGER.error("Could not retrieve data, skipping update")
|
|
|
|
return
|
|
|
|
|
|
|
|
if "meters" not in energy_details:
|
|
|
|
_LOGGER.debug(
|
|
|
|
"Missing meters in energy details data. Assuming site does not have any"
|
|
|
|
)
|
|
|
|
return
|
|
|
|
|
|
|
|
self.data = {}
|
|
|
|
self.attributes = {}
|
|
|
|
self.unit = energy_details["unit"]
|
|
|
|
meters = energy_details["meters"]
|
|
|
|
|
|
|
|
for entity in meters:
|
|
|
|
for key, data in entity.items():
|
|
|
|
if key == "type" and data in [
|
|
|
|
"Production",
|
|
|
|
"SelfConsumption",
|
|
|
|
"FeedIn",
|
|
|
|
"Purchased",
|
|
|
|
"Consumption",
|
|
|
|
]:
|
|
|
|
energy_type = data
|
|
|
|
if key == "values":
|
|
|
|
for row in data:
|
|
|
|
self.data[energy_type] = row["value"]
|
|
|
|
self.attributes[energy_type] = {"date": row["date"]}
|
|
|
|
|
|
|
|
_LOGGER.debug(
|
|
|
|
"Updated SolarEdge energy details: %s, %s", self.data, self.attributes
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2019-03-27 21:08:52 +00:00
|
|
|
class SolarEdgePowerFlowDataService(SolarEdgeDataService):
|
|
|
|
"""Get and update the latest power flow data."""
|
|
|
|
|
|
|
|
def __init__(self, api, site_id):
|
|
|
|
"""Initialize the power flow data service."""
|
|
|
|
super().__init__(api, site_id)
|
|
|
|
|
|
|
|
self.unit = None
|
|
|
|
|
|
|
|
@Throttle(POWER_FLOW_UPDATE_DELAY)
|
|
|
|
def update(self):
|
|
|
|
"""Update the data from the SolarEdge Monitoring API."""
|
|
|
|
try:
|
|
|
|
data = self.api.get_current_power_flow(self.site_id)
|
2019-07-31 19:25:30 +00:00
|
|
|
power_flow = data["siteCurrentPowerFlow"]
|
2019-03-27 21:08:52 +00:00
|
|
|
except KeyError:
|
|
|
|
_LOGGER.error("Missing power flow data, skipping update")
|
|
|
|
return
|
|
|
|
except (ConnectTimeout, HTTPError):
|
|
|
|
_LOGGER.error("Could not retrieve data, skipping update")
|
|
|
|
return
|
|
|
|
|
|
|
|
power_from = []
|
|
|
|
power_to = []
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
if "connections" not in power_flow:
|
2019-12-31 13:56:23 +00:00
|
|
|
_LOGGER.debug(
|
|
|
|
"Missing connections in power flow data. Assuming site does not have any"
|
|
|
|
)
|
2019-03-27 21:08:52 +00:00
|
|
|
return
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
for connection in power_flow["connections"]:
|
|
|
|
power_from.append(connection["from"].lower())
|
|
|
|
power_to.append(connection["to"].lower())
|
2019-03-27 21:08:52 +00:00
|
|
|
|
|
|
|
self.data = {}
|
|
|
|
self.attributes = {}
|
2019-07-31 19:25:30 +00:00
|
|
|
self.unit = power_flow["unit"]
|
2019-03-27 21:08:52 +00:00
|
|
|
|
|
|
|
for key, value in power_flow.items():
|
2019-07-31 19:25:30 +00:00
|
|
|
if key in ["LOAD", "PV", "GRID", "STORAGE"]:
|
|
|
|
self.data[key] = value["currentPower"]
|
|
|
|
self.attributes[key] = {"status": value["status"]}
|
2019-03-27 21:08:52 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
if key in ["GRID"]:
|
2019-03-27 21:08:52 +00:00
|
|
|
export = key.lower() in power_to
|
|
|
|
self.data[key] *= -1 if export else 1
|
2019-07-31 19:25:30 +00:00
|
|
|
self.attributes[key]["flow"] = "export" if export else "import"
|
2019-03-27 21:08:52 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
if key in ["STORAGE"]:
|
2019-03-27 21:08:52 +00:00
|
|
|
charge = key.lower() in power_to
|
|
|
|
self.data[key] *= -1 if charge else 1
|
2019-07-31 19:25:30 +00:00
|
|
|
self.attributes[key]["flow"] = "charge" if charge else "discharge"
|
2020-08-09 21:28:45 +00:00
|
|
|
self.attributes[key]["soc"] = value["chargeLevel"]
|
2019-03-27 21:08:52 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
_LOGGER.debug(
|
|
|
|
"Updated SolarEdge power flow: %s, %s", self.data, self.attributes
|
|
|
|
)
|