Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor homematicip_cloud connection #139081

Open
wants to merge 22 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,15 @@ def _security_and_alarm(self) -> SecurityAndAlarmHome:

async def async_alarm_disarm(self, code: str | None = None) -> None:
"""Send disarm command."""
await self._home.set_security_zones_activation(False, False)
await self._home.set_security_zones_activation_async(False, False)

async def async_alarm_arm_home(self, code: str | None = None) -> None:
"""Send arm home command."""
await self._home.set_security_zones_activation(False, True)
await self._home.set_security_zones_activation_async(False, True)

async def async_alarm_arm_away(self, code: str | None = None) -> None:
"""Send arm away command."""
await self._home.set_security_zones_activation(True, True)
await self._home.set_security_zones_activation_async(True, True)

async def async_added_to_hass(self) -> None:
"""Register callbacks."""
Expand Down
92 changes: 43 additions & 49 deletions homeassistant/components/homematicip_cloud/binary_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,31 @@

from typing import Any

from homematicip.aio.device import (
AsyncAccelerationSensor,
AsyncContactInterface,
AsyncDevice,
AsyncFullFlushContactInterface,
AsyncFullFlushContactInterface6,
AsyncMotionDetectorIndoor,
AsyncMotionDetectorOutdoor,
AsyncMotionDetectorPushButton,
AsyncPluggableMainsFailureSurveillance,
AsyncPresenceDetectorIndoor,
AsyncRainSensor,
AsyncRotaryHandleSensor,
AsyncShutterContact,
AsyncShutterContactMagnetic,
AsyncSmokeDetector,
AsyncTiltVibrationSensor,
AsyncWaterSensor,
AsyncWeatherSensor,
AsyncWeatherSensorPlus,
AsyncWeatherSensorPro,
AsyncWiredInput32,
)
from homematicip.aio.group import AsyncSecurityGroup, AsyncSecurityZoneGroup
from homematicip.base.enums import SmokeDetectorAlarmType, WindowState
from homematicip.device import (
AccelerationSensor,
ContactInterface,
Device,
FullFlushContactInterface,
FullFlushContactInterface6,
MotionDetectorIndoor,
MotionDetectorOutdoor,
MotionDetectorPushButton,
PluggableMainsFailureSurveillance,
PresenceDetectorIndoor,
RainSensor,
RotaryHandleSensor,
ShutterContact,
ShutterContactMagnetic,
SmokeDetector,
TiltVibrationSensor,
WaterSensor,
WeatherSensor,
WeatherSensorPlus,
WeatherSensorPro,
WiredInput32,
)
from homematicip.group import SecurityGroup, SecurityZoneGroup

from homeassistant.components.binary_sensor import (
BinarySensorDeviceClass,
Expand Down Expand Up @@ -82,66 +82,60 @@ async def async_setup_entry(
hap = hass.data[DOMAIN][config_entry.unique_id]
entities: list[HomematicipGenericEntity] = [HomematicipCloudConnectionSensor(hap)]
for device in hap.home.devices:
if isinstance(device, AsyncAccelerationSensor):
if isinstance(device, AccelerationSensor):
entities.append(HomematicipAccelerationSensor(hap, device))
if isinstance(device, AsyncTiltVibrationSensor):
if isinstance(device, TiltVibrationSensor):
entities.append(HomematicipTiltVibrationSensor(hap, device))
if isinstance(device, AsyncWiredInput32):
if isinstance(device, WiredInput32):
entities.extend(
HomematicipMultiContactInterface(hap, device, channel=channel)
for channel in range(1, 33)
)
elif isinstance(device, AsyncFullFlushContactInterface6):
elif isinstance(device, FullFlushContactInterface6):
entities.extend(
HomematicipMultiContactInterface(hap, device, channel=channel)
for channel in range(1, 7)
)
elif isinstance(
device, (AsyncContactInterface, AsyncFullFlushContactInterface)
):
elif isinstance(device, (ContactInterface, FullFlushContactInterface)):
entities.append(HomematicipContactInterface(hap, device))
if isinstance(
device,
(AsyncShutterContact, AsyncShutterContactMagnetic),
(ShutterContact, ShutterContactMagnetic),
):
entities.append(HomematicipShutterContact(hap, device))
if isinstance(device, AsyncRotaryHandleSensor):
if isinstance(device, RotaryHandleSensor):
entities.append(HomematicipShutterContact(hap, device, True))
if isinstance(
device,
(
AsyncMotionDetectorIndoor,
AsyncMotionDetectorOutdoor,
AsyncMotionDetectorPushButton,
MotionDetectorIndoor,
MotionDetectorOutdoor,
MotionDetectorPushButton,
),
):
entities.append(HomematicipMotionDetector(hap, device))
if isinstance(device, AsyncPluggableMainsFailureSurveillance):
if isinstance(device, PluggableMainsFailureSurveillance):
entities.append(
HomematicipPluggableMainsFailureSurveillanceSensor(hap, device)
)
if isinstance(device, AsyncPresenceDetectorIndoor):
if isinstance(device, PresenceDetectorIndoor):
entities.append(HomematicipPresenceDetector(hap, device))
if isinstance(device, AsyncSmokeDetector):
if isinstance(device, SmokeDetector):
entities.append(HomematicipSmokeDetector(hap, device))
if isinstance(device, AsyncWaterSensor):
if isinstance(device, WaterSensor):
entities.append(HomematicipWaterDetector(hap, device))
if isinstance(
device, (AsyncRainSensor, AsyncWeatherSensorPlus, AsyncWeatherSensorPro)
):
if isinstance(device, (RainSensor, WeatherSensorPlus, WeatherSensorPro)):
entities.append(HomematicipRainSensor(hap, device))
if isinstance(
device, (AsyncWeatherSensor, AsyncWeatherSensorPlus, AsyncWeatherSensorPro)
):
if isinstance(device, (WeatherSensor, WeatherSensorPlus, WeatherSensorPro)):
entities.append(HomematicipStormSensor(hap, device))
entities.append(HomematicipSunshineSensor(hap, device))
if isinstance(device, AsyncDevice) and device.lowBat is not None:
if isinstance(device, Device) and device.lowBat is not None:
entities.append(HomematicipBatterySensor(hap, device))

for group in hap.home.groups:
if isinstance(group, AsyncSecurityGroup):
if isinstance(group, SecurityGroup):
entities.append(HomematicipSecuritySensorGroup(hap, device=group))
elif isinstance(group, AsyncSecurityZoneGroup):
elif isinstance(group, SecurityZoneGroup):
entities.append(HomematicipSecurityZoneSensorGroup(hap, device=group))

async_add_entities(entities)
Expand Down
6 changes: 3 additions & 3 deletions homeassistant/components/homematicip_cloud/button.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

from homematicip.aio.device import AsyncWallMountedGarageDoorController
from homematicip.device import WallMountedGarageDoorController

from homeassistant.components.button import ButtonEntity
from homeassistant.config_entries import ConfigEntry
Expand All @@ -25,7 +25,7 @@ async def async_setup_entry(
async_add_entities(
HomematicipGarageDoorControllerButton(hap, device)
for device in hap.home.devices
if isinstance(device, AsyncWallMountedGarageDoorController)
if isinstance(device, WallMountedGarageDoorController)
)


Expand All @@ -39,4 +39,4 @@ def __init__(self, hap: HomematicipHAP, device) -> None:

async def async_press(self) -> None:
"""Handle the button press."""
await self._device.send_start_impulse()
await self._device.send_start_impulse_async()
46 changes: 20 additions & 26 deletions homeassistant/components/homematicip_cloud/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,15 @@

from typing import Any

from homematicip.aio.device import (
AsyncHeatingThermostat,
AsyncHeatingThermostatCompact,
AsyncHeatingThermostatEvo,
)
from homematicip.aio.group import AsyncHeatingGroup
from homematicip.base.enums import AbsenceType
from homematicip.device import Switch
from homematicip.device import (
HeatingThermostat,
HeatingThermostatCompact,
HeatingThermostatEvo,
Switch,
)
from homematicip.functionalHomes import IndoorClimateHome
from homematicip.group import HeatingCoolingProfile
from homematicip.group import HeatingCoolingProfile, HeatingGroup

from homeassistant.components.climate import (
PRESET_AWAY,
Expand Down Expand Up @@ -65,7 +64,7 @@ async def async_setup_entry(
async_add_entities(
HomematicipHeatingGroup(hap, device)
for device in hap.home.groups
if isinstance(device, AsyncHeatingGroup)
if isinstance(device, HeatingGroup)
)


Expand All @@ -82,7 +81,7 @@ class HomematicipHeatingGroup(HomematicipGenericEntity, ClimateEntity):
)
_attr_temperature_unit = UnitOfTemperature.CELSIUS

def __init__(self, hap: HomematicipHAP, device: AsyncHeatingGroup) -> None:
def __init__(self, hap: HomematicipHAP, device: HeatingGroup) -> None:
"""Initialize heating group."""
device.modelType = "HmIP-Heating-Group"
super().__init__(hap, device)
Expand Down Expand Up @@ -214,31 +213,31 @@ async def async_set_temperature(self, **kwargs: Any) -> None:
return

if self.min_temp <= temperature <= self.max_temp:
await self._device.set_point_temperature(temperature)
await self._device.set_point_temperature_async(temperature)

async def async_set_hvac_mode(self, hvac_mode: HVACMode) -> None:
"""Set new target hvac mode."""
if hvac_mode not in self.hvac_modes:
return

if hvac_mode == HVACMode.AUTO:
await self._device.set_control_mode(HMIP_AUTOMATIC_CM)
await self._device.set_control_mode_async(HMIP_AUTOMATIC_CM)
else:
await self._device.set_control_mode(HMIP_MANUAL_CM)
await self._device.set_control_mode_async(HMIP_MANUAL_CM)

async def async_set_preset_mode(self, preset_mode: str) -> None:
"""Set new preset mode."""
if self._device.boostMode and preset_mode != PRESET_BOOST:
await self._device.set_boost(False)
await self._device.set_boost_async(False)
if preset_mode == PRESET_BOOST:
await self._device.set_boost()
await self._device.set_boost_async()
if preset_mode == PRESET_ECO:
await self._device.set_control_mode(HMIP_ECO_CM)
await self._device.set_control_mode_async(HMIP_ECO_CM)
if preset_mode in self._device_profile_names:
profile_idx = self._get_profile_idx_by_name(preset_mode)
if self._device.controlMode != HMIP_AUTOMATIC_CM:
await self.async_set_hvac_mode(HVACMode.AUTO)
await self._device.set_active_profile(profile_idx)
await self._device.set_active_profile_async(profile_idx)

@property
def extra_state_attributes(self) -> dict[str, Any]:
Expand Down Expand Up @@ -332,20 +331,15 @@ def _has_radiator_thermostat(self) -> bool:
@property
def _first_radiator_thermostat(
self,
) -> (
AsyncHeatingThermostat
| AsyncHeatingThermostatCompact
| AsyncHeatingThermostatEvo
| None
):
) -> HeatingThermostat | HeatingThermostatCompact | HeatingThermostatEvo | None:
"""Return the first radiator thermostat from the hmip heating group."""
for device in self._device.devices:
if isinstance(
device,
(
AsyncHeatingThermostat,
AsyncHeatingThermostatCompact,
AsyncHeatingThermostatEvo,
HeatingThermostat,
HeatingThermostatCompact,
HeatingThermostatEvo,
),
):
return device
Expand Down
Loading
Loading