From 28eef00cce9aa6ff04b9a1a7082ac7060bbb2543 Mon Sep 17 00:00:00 2001 From: Bouke Haarsma Date: Sat, 22 Jun 2024 19:09:40 +0200 Subject: [PATCH] Huisbaasje rebranded to EnergyFlip (#120151) Co-authored-by: Franck Nijhof --- .../components/huisbaasje/__init__.py | 18 +++---- .../components/huisbaasje/config_flow.py | 6 +-- homeassistant/components/huisbaasje/const.py | 4 +- .../components/huisbaasje/manifest.json | 4 +- homeassistant/components/huisbaasje/sensor.py | 48 +++++++++---------- homeassistant/generated/integrations.json | 2 +- 6 files changed, 41 insertions(+), 41 deletions(-) diff --git a/homeassistant/components/huisbaasje/__init__.py b/homeassistant/components/huisbaasje/__init__.py index b02d0bf577c..3e0c9845c92 100644 --- a/homeassistant/components/huisbaasje/__init__.py +++ b/homeassistant/components/huisbaasje/__init__.py @@ -1,4 +1,4 @@ -"""The Huisbaasje integration.""" +"""The EnergyFlip integration.""" import asyncio from datetime import timedelta @@ -31,8 +31,8 @@ _LOGGER = logging.getLogger(__name__) async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: - """Set up Huisbaasje from a config entry.""" - # Create the Huisbaasje client + """Set up EnergyFlip from a config entry.""" + # Create the EnergyFlip client energyflip = EnergyFlip( username=entry.data[CONF_USERNAME], password=entry.data[CONF_PASSWORD], @@ -48,7 +48,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: return False async def async_update_data() -> dict[str, dict[str, Any]]: - return await async_update_huisbaasje(energyflip) + return await async_update_energyflip(energyflip) # Create a coordinator for polling updates coordinator = DataUpdateCoordinator( @@ -75,21 +75,21 @@ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: # Forward the unloading of the entry to the platform unload_ok = await hass.config_entries.async_unload_platforms(entry, PLATFORMS) - # If successful, unload the Huisbaasje client + # If successful, unload the EnergyFlip client if unload_ok: hass.data[DOMAIN].pop(entry.entry_id) return unload_ok -async def async_update_huisbaasje(energyflip: EnergyFlip) -> dict[str, dict[str, Any]]: - """Update the data by performing a request to Huisbaasje.""" +async def async_update_energyflip(energyflip: EnergyFlip) -> dict[str, dict[str, Any]]: + """Update the data by performing a request to EnergyFlip.""" try: # Note: TimeoutError and aiohttp.ClientError are already # handled by the data update coordinator. async with asyncio.timeout(FETCH_TIMEOUT): if not energyflip.is_authenticated(): - _LOGGER.warning("Huisbaasje is unauthenticated. Reauthenticating") + _LOGGER.warning("EnergyFlip is unauthenticated. Reauthenticating") await energyflip.authenticate() current_measurements = await energyflip.current_measurements() @@ -125,7 +125,7 @@ def _get_cumulative_value( ): """Get the cumulative energy consumption for a certain period. - :param current_measurements: The result from the Huisbaasje client + :param current_measurements: The result from the EnergyFlip client :param source_type: The source of energy (electricity or gas) :param period_type: The period for which cumulative value should be given. """ diff --git a/homeassistant/components/huisbaasje/config_flow.py b/homeassistant/components/huisbaasje/config_flow.py index d0d2632c386..ecf8cdbe431 100644 --- a/homeassistant/components/huisbaasje/config_flow.py +++ b/homeassistant/components/huisbaasje/config_flow.py @@ -1,4 +1,4 @@ -"""Config flow for Huisbaasje integration.""" +"""Config flow for EnergyFlip integration.""" import logging @@ -18,8 +18,8 @@ DATA_SCHEMA = vol.Schema( ) -class HuisbaasjeConfigFlow(ConfigFlow, domain=DOMAIN): - """Handle a config flow for Huisbaasje.""" +class EnergyFlipConfigFlow(ConfigFlow, domain=DOMAIN): + """Handle a config flow for EnergyFlip.""" VERSION = 1 diff --git a/homeassistant/components/huisbaasje/const.py b/homeassistant/components/huisbaasje/const.py index 108e3fffa1e..2738289343f 100644 --- a/homeassistant/components/huisbaasje/const.py +++ b/homeassistant/components/huisbaasje/const.py @@ -1,4 +1,4 @@ -"""Constants for the Huisbaasje integration.""" +"""Constants for the EnergyFlip integration.""" from energyflip.const import ( SOURCE_TYPE_ELECTRICITY, @@ -13,7 +13,7 @@ DATA_COORDINATOR = "coordinator" DOMAIN = "huisbaasje" -"""Interval in seconds between polls to huisbaasje.""" +"""Interval in seconds between polls to EnergyFlip.""" POLLING_INTERVAL = 20 """Timeout for fetching sensor data""" diff --git a/homeassistant/components/huisbaasje/manifest.json b/homeassistant/components/huisbaasje/manifest.json index 610abc833ce..7ea7be258b6 100644 --- a/homeassistant/components/huisbaasje/manifest.json +++ b/homeassistant/components/huisbaasje/manifest.json @@ -1,10 +1,10 @@ { "domain": "huisbaasje", - "name": "Huisbaasje", + "name": "EnergyFlip", "codeowners": ["@dennisschroer"], "config_flow": true, "documentation": "https://www.home-assistant.io/integrations/huisbaasje", "iot_class": "cloud_polling", - "loggers": ["huisbaasje"], + "loggers": ["energyflip"], "requirements": ["energyflip-client==0.2.2"] } diff --git a/homeassistant/components/huisbaasje/sensor.py b/homeassistant/components/huisbaasje/sensor.py index 142d013ed1e..c024e3030fa 100644 --- a/homeassistant/components/huisbaasje/sensor.py +++ b/homeassistant/components/huisbaasje/sensor.py @@ -50,14 +50,14 @@ _LOGGER = logging.getLogger(__name__) @dataclass(frozen=True) -class HuisbaasjeSensorEntityDescription(SensorEntityDescription): +class EnergyFlipSensorEntityDescription(SensorEntityDescription): """Class describing Airly sensor entities.""" sensor_type: str = SENSOR_TYPE_RATE SENSORS_INFO = [ - HuisbaasjeSensorEntityDescription( + EnergyFlipSensorEntityDescription( translation_key="current_power", sensor_type=SENSOR_TYPE_RATE, device_class=SensorDeviceClass.POWER, @@ -65,7 +65,7 @@ SENSORS_INFO = [ key=SOURCE_TYPE_ELECTRICITY, state_class=SensorStateClass.MEASUREMENT, ), - HuisbaasjeSensorEntityDescription( + EnergyFlipSensorEntityDescription( translation_key="current_power_peak", sensor_type=SENSOR_TYPE_RATE, device_class=SensorDeviceClass.POWER, @@ -73,7 +73,7 @@ SENSORS_INFO = [ key=SOURCE_TYPE_ELECTRICITY_IN, state_class=SensorStateClass.MEASUREMENT, ), - HuisbaasjeSensorEntityDescription( + EnergyFlipSensorEntityDescription( translation_key="current_power_off_peak", sensor_type=SENSOR_TYPE_RATE, device_class=SensorDeviceClass.POWER, @@ -81,7 +81,7 @@ SENSORS_INFO = [ key=SOURCE_TYPE_ELECTRICITY_IN_LOW, state_class=SensorStateClass.MEASUREMENT, ), - HuisbaasjeSensorEntityDescription( + EnergyFlipSensorEntityDescription( translation_key="current_power_out_peak", sensor_type=SENSOR_TYPE_RATE, device_class=SensorDeviceClass.POWER, @@ -89,7 +89,7 @@ SENSORS_INFO = [ key=SOURCE_TYPE_ELECTRICITY_OUT, state_class=SensorStateClass.MEASUREMENT, ), - HuisbaasjeSensorEntityDescription( + EnergyFlipSensorEntityDescription( translation_key="current_power_out_off_peak", sensor_type=SENSOR_TYPE_RATE, device_class=SensorDeviceClass.POWER, @@ -97,7 +97,7 @@ SENSORS_INFO = [ key=SOURCE_TYPE_ELECTRICITY_OUT_LOW, state_class=SensorStateClass.MEASUREMENT, ), - HuisbaasjeSensorEntityDescription( + EnergyFlipSensorEntityDescription( translation_key="energy_consumption_peak_today", device_class=SensorDeviceClass.ENERGY, native_unit_of_measurement=UnitOfEnergy.KILO_WATT_HOUR, @@ -106,7 +106,7 @@ SENSORS_INFO = [ state_class=SensorStateClass.TOTAL_INCREASING, suggested_display_precision=3, ), - HuisbaasjeSensorEntityDescription( + EnergyFlipSensorEntityDescription( translation_key="energy_consumption_off_peak_today", device_class=SensorDeviceClass.ENERGY, native_unit_of_measurement=UnitOfEnergy.KILO_WATT_HOUR, @@ -115,7 +115,7 @@ SENSORS_INFO = [ state_class=SensorStateClass.TOTAL_INCREASING, suggested_display_precision=3, ), - HuisbaasjeSensorEntityDescription( + EnergyFlipSensorEntityDescription( translation_key="energy_production_peak_today", device_class=SensorDeviceClass.ENERGY, native_unit_of_measurement=UnitOfEnergy.KILO_WATT_HOUR, @@ -124,7 +124,7 @@ SENSORS_INFO = [ state_class=SensorStateClass.TOTAL_INCREASING, suggested_display_precision=3, ), - HuisbaasjeSensorEntityDescription( + EnergyFlipSensorEntityDescription( translation_key="energy_production_off_peak_today", device_class=SensorDeviceClass.ENERGY, native_unit_of_measurement=UnitOfEnergy.KILO_WATT_HOUR, @@ -133,7 +133,7 @@ SENSORS_INFO = [ state_class=SensorStateClass.TOTAL_INCREASING, suggested_display_precision=3, ), - HuisbaasjeSensorEntityDescription( + EnergyFlipSensorEntityDescription( translation_key="energy_today", device_class=SensorDeviceClass.ENERGY, native_unit_of_measurement=UnitOfEnergy.KILO_WATT_HOUR, @@ -142,7 +142,7 @@ SENSORS_INFO = [ sensor_type=SENSOR_TYPE_THIS_DAY, suggested_display_precision=1, ), - HuisbaasjeSensorEntityDescription( + EnergyFlipSensorEntityDescription( translation_key="energy_week", device_class=SensorDeviceClass.ENERGY, native_unit_of_measurement=UnitOfEnergy.KILO_WATT_HOUR, @@ -151,7 +151,7 @@ SENSORS_INFO = [ sensor_type=SENSOR_TYPE_THIS_WEEK, suggested_display_precision=1, ), - HuisbaasjeSensorEntityDescription( + EnergyFlipSensorEntityDescription( translation_key="energy_month", device_class=SensorDeviceClass.ENERGY, native_unit_of_measurement=UnitOfEnergy.KILO_WATT_HOUR, @@ -160,7 +160,7 @@ SENSORS_INFO = [ sensor_type=SENSOR_TYPE_THIS_MONTH, suggested_display_precision=1, ), - HuisbaasjeSensorEntityDescription( + EnergyFlipSensorEntityDescription( translation_key="energy_year", device_class=SensorDeviceClass.ENERGY, native_unit_of_measurement=UnitOfEnergy.KILO_WATT_HOUR, @@ -169,7 +169,7 @@ SENSORS_INFO = [ sensor_type=SENSOR_TYPE_THIS_YEAR, suggested_display_precision=1, ), - HuisbaasjeSensorEntityDescription( + EnergyFlipSensorEntityDescription( translation_key="current_gas", native_unit_of_measurement=UnitOfVolumeFlowRate.CUBIC_METERS_PER_HOUR, sensor_type=SENSOR_TYPE_RATE, @@ -177,7 +177,7 @@ SENSORS_INFO = [ key=SOURCE_TYPE_GAS, suggested_display_precision=2, ), - HuisbaasjeSensorEntityDescription( + EnergyFlipSensorEntityDescription( translation_key="gas_today", device_class=SensorDeviceClass.GAS, native_unit_of_measurement=UnitOfVolume.CUBIC_METERS, @@ -186,7 +186,7 @@ SENSORS_INFO = [ state_class=SensorStateClass.TOTAL_INCREASING, suggested_display_precision=2, ), - HuisbaasjeSensorEntityDescription( + EnergyFlipSensorEntityDescription( translation_key="gas_week", device_class=SensorDeviceClass.GAS, native_unit_of_measurement=UnitOfVolume.CUBIC_METERS, @@ -195,7 +195,7 @@ SENSORS_INFO = [ state_class=SensorStateClass.TOTAL_INCREASING, suggested_display_precision=2, ), - HuisbaasjeSensorEntityDescription( + EnergyFlipSensorEntityDescription( translation_key="gas_month", device_class=SensorDeviceClass.GAS, native_unit_of_measurement=UnitOfVolume.CUBIC_METERS, @@ -204,7 +204,7 @@ SENSORS_INFO = [ state_class=SensorStateClass.TOTAL_INCREASING, suggested_display_precision=2, ), - HuisbaasjeSensorEntityDescription( + EnergyFlipSensorEntityDescription( translation_key="gas_year", device_class=SensorDeviceClass.GAS, native_unit_of_measurement=UnitOfVolume.CUBIC_METERS, @@ -228,24 +228,24 @@ async def async_setup_entry( user_id = config_entry.data[CONF_ID] async_add_entities( - HuisbaasjeSensor(coordinator, user_id, description) + EnergyFlipSensor(coordinator, user_id, description) for description in SENSORS_INFO ) -class HuisbaasjeSensor( +class EnergyFlipSensor( CoordinatorEntity[DataUpdateCoordinator[dict[str, dict[str, Any]]]], SensorEntity ): - """Defines a Huisbaasje sensor.""" + """Defines a EnergyFlip sensor.""" - entity_description: HuisbaasjeSensorEntityDescription + entity_description: EnergyFlipSensorEntityDescription _attr_has_entity_name = True def __init__( self, coordinator: DataUpdateCoordinator[dict[str, dict[str, Any]]], user_id: str, - description: HuisbaasjeSensorEntityDescription, + description: EnergyFlipSensorEntityDescription, ) -> None: """Initialize the sensor.""" super().__init__(coordinator) diff --git a/homeassistant/generated/integrations.json b/homeassistant/generated/integrations.json index cdcd9c906d8..bbf96e4461b 100644 --- a/homeassistant/generated/integrations.json +++ b/homeassistant/generated/integrations.json @@ -2653,7 +2653,7 @@ "iot_class": "local_polling" }, "huisbaasje": { - "name": "Huisbaasje", + "name": "EnergyFlip", "integration_type": "hub", "config_flow": true, "iot_class": "cloud_polling"