Skip to content

Commit

Permalink
Bump hahomematic to 2025.1.15
Browse files Browse the repository at this point in the history
  • Loading branch information
SukramJ committed Jan 25, 2025
1 parent d16ab41 commit e3eca78
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 13 deletions.
5 changes: 3 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# Version 1.80.0 (2025-01-24)
# Version 1.80.0 (2025-01-25)

## What's Changed
- Bump hahomematic to 2025.1.14
- Bump hahomematic to 2025.1.15
- Add LOW_BAT_LIMIT
- Add calculated data points:
- ApparentTemperature
- DewPoint
- FrostPoint
- OperatingVoltageLevel
- VaporConcentration
- Refactor parameter_visibility
Expand Down
2 changes: 1 addition & 1 deletion custom_components/homematicip_local/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
DOMAIN: Final = "homematicip_local"
HMIP_LOCAL_MIN_HA_VERSION: Final = "2024.12.0"
ENABLE_EXPERIMENTAL_FEATURES: Final = False
HMIP_LOCAL_HAHOMEMATIC_VERSION: Final = "2025.1.14"
HMIP_LOCAL_HAHOMEMATIC_VERSION: Final = "2025.1.15"

DEFAULT_ENABLE_DEVICE_FIRMWARE_CHECK: Final = True
DEFAULT_ENABLE_SYSTEM_NOTIFICATIONS: Final = True
Expand Down
7 changes: 4 additions & 3 deletions custom_components/homematicip_local/entity_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,11 +177,12 @@ class HmButtonEntityDescription(HmEntityDescription, ButtonEntityDescription):
device_class=SensorDeviceClass.CURRENT,
state_class=SensorStateClass.MEASUREMENT,
),
"DEWPOINT": HmSensorEntityDescription(
key="DEWPOINT",
("DEWPOINT", "DEW_POINT"): HmSensorEntityDescription(
key="DEW_POINT",
native_unit_of_measurement=UnitOfTemperature.CELSIUS,
device_class=SensorDeviceClass.TEMPERATURE,
state_class=SensorStateClass.MEASUREMENT,
translation_key="dew_point",
entity_registry_enabled_default=False,
),
("ACTIVITY_STATE", "DIRECTION"): HmSensorEntityDescription(
Expand Down Expand Up @@ -368,7 +369,7 @@ class HmButtonEntityDescription(HmEntityDescription, ButtonEntityDescription):
entity_category=EntityCategory.DIAGNOSTIC,
entity_registry_enabled_default=False,
),
"APPARENT_TEMPERATURE": HmSensorEntityDescription(
("APPARENT_TEMPERATURE", "FROST_POINT"): HmSensorEntityDescription(
key="APPARENT_TEMPERATURE",
native_unit_of_measurement=UnitOfTemperature.CELSIUS,
device_class=SensorDeviceClass.TEMPERATURE,
Expand Down
2 changes: 1 addition & 1 deletion custom_components/homematicip_local/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"iot_class": "local_push",
"issue_tracker": "https://github.com/sukramj/hahomematic/issues",
"loggers": ["hahomematic"],
"requirements": ["hahomematic==2025.1.14"],
"requirements": ["hahomematic==2025.1.15"],
"ssdp": [
{
"manufacturer": "EQ3",
Expand Down
7 changes: 5 additions & 2 deletions custom_components/homematicip_local/strings.json
Original file line number Diff line number Diff line change
Expand Up @@ -326,8 +326,8 @@
"current_illumination": {
"name": "Illumination"
},
"dewpoint": {
"name": "Dewpoint"
"dew_point": {
"name": "Dew point"
},
"direction": {
"name": "Direction",
Expand Down Expand Up @@ -368,6 +368,9 @@
"frequency": {
"name": "Frequency"
},
"frost_point": {
"name": "Frost point"
},
"gas_energy_counter": {
"name": "Gas Energy Counter"
},
Expand Down
5 changes: 4 additions & 1 deletion custom_components/homematicip_local/translations/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@
"current_illumination": {
"name": "Beleuchtungsstärke"
},
"dewpoint": {
"dew_point": {
"name": "Taupunkt"
},
"direction": {
Expand Down Expand Up @@ -372,6 +372,9 @@
"frequency": {
"name": "Frequenz"
},
"frost_point": {
"name": "Frostpunkt"
},
"gas_flow": {
"name": "Gas-Fluss"
},
Expand Down
7 changes: 5 additions & 2 deletions custom_components/homematicip_local/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -326,8 +326,8 @@
"current_illumination": {
"name": "Illumination"
},
"dewpoint": {
"name": "Dewpoint"
"dew_point": {
"name": "Dew point"
},
"direction": {
"name": "Direction",
Expand Down Expand Up @@ -368,6 +368,9 @@
"frequency": {
"name": "Frequency"
},
"frost_point": {
"name": "Frost point"
},
"gas_energy_counter": {
"name": "Gas Energy Counter"
},
Expand Down
2 changes: 1 addition & 1 deletion requirements_test.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-r requirements_test_pre_commit.txt

async-upnp-client==0.43.0
hahomematic==2025.1.14
hahomematic==2025.1.15
homeassistant==2025.1.4
isal==1.7.1
mypy-dev==1.14.0a7
Expand Down

0 comments on commit e3eca78

Please sign in to comment.