mirror of
https://github.com/home-assistant/core.git
synced 2026-03-19 17:26:03 +01:00
Compare commits
2 Commits
add_temper
...
climate_ad
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4d3f3f6cb2 | ||
|
|
d6715e4d22 |
@@ -53,6 +53,7 @@ from .const import ( # noqa: F401
|
||||
ATTR_TARGET_TEMP_HIGH,
|
||||
ATTR_TARGET_TEMP_LOW,
|
||||
ATTR_TARGET_TEMP_STEP,
|
||||
ATTR_TEMPERATURE_UNIT,
|
||||
DOMAIN,
|
||||
FAN_AUTO,
|
||||
FAN_DIFFUSE,
|
||||
@@ -357,6 +358,7 @@ class ClimateEntity(Entity, cached_properties=CACHED_PROPERTIES_WITH_ATTR_):
|
||||
ATTR_CURRENT_TEMPERATURE: show_temp(
|
||||
hass, self.current_temperature, temperature_unit, precision
|
||||
),
|
||||
ATTR_TEMPERATURE_UNIT: hass.config.units.temperature_unit,
|
||||
}
|
||||
|
||||
if ClimateEntityFeature.TARGET_TEMPERATURE in supported_features:
|
||||
|
||||
@@ -118,6 +118,8 @@ ATTR_TARGET_HUMIDITY_STEP = "target_humidity_step"
|
||||
ATTR_TARGET_TEMP_HIGH = "target_temp_high"
|
||||
ATTR_TARGET_TEMP_LOW = "target_temp_low"
|
||||
ATTR_TARGET_TEMP_STEP = "target_temp_step"
|
||||
ATTR_TEMPERATURE_UNIT = "temperature_unit"
|
||||
|
||||
|
||||
DEFAULT_MIN_TEMP = 7
|
||||
DEFAULT_MAX_TEMP = 35
|
||||
|
||||
@@ -63,6 +63,7 @@
|
||||
'min_temp': 16,
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'temperature': 24.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.living_room',
|
||||
@@ -149,6 +150,7 @@
|
||||
'min_temp': 16,
|
||||
'supported_features': <ClimateEntityFeature: 393>,
|
||||
'temperature': 24.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_system',
|
||||
|
||||
@@ -51,6 +51,7 @@
|
||||
'target_temp_high': 24,
|
||||
'target_temp_low': 20,
|
||||
'target_temp_step': 1,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.myauto',
|
||||
|
||||
@@ -67,6 +67,7 @@
|
||||
]),
|
||||
'supported_features': <ClimateEntityFeature: 17>,
|
||||
'temperature': 22.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_thermostat',
|
||||
|
||||
@@ -163,6 +163,7 @@
|
||||
'off',
|
||||
]),
|
||||
'temperature': 22.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.living_room',
|
||||
|
||||
@@ -66,6 +66,7 @@
|
||||
]),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 40.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.fakespa',
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
'target_temp_high': None,
|
||||
'target_temp_low': None,
|
||||
'temperature': 72,
|
||||
'temperature_unit': <UnitOfTemperature.FAHRENHEIT: '°F'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.system_1_zone_1',
|
||||
|
||||
@@ -68,6 +68,7 @@
|
||||
]),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 18.5,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.bsb_lan',
|
||||
@@ -146,6 +147,7 @@
|
||||
]),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 18.5,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.bsb_lan',
|
||||
|
||||
@@ -148,6 +148,7 @@
|
||||
]),
|
||||
'target_temp_step': 1,
|
||||
'temperature': 23,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.midea_0',
|
||||
@@ -188,6 +189,7 @@
|
||||
]),
|
||||
'target_temp_step': 1,
|
||||
'temperature': 24,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.midea_1',
|
||||
|
||||
@@ -27,6 +27,7 @@ from homeassistant.components.climate.const import (
|
||||
ATTR_TARGET_HUMIDITY_STEP,
|
||||
ATTR_TARGET_TEMP_HIGH,
|
||||
ATTR_TARGET_TEMP_LOW,
|
||||
ATTR_TEMPERATURE_UNIT,
|
||||
SERVICE_SET_FAN_MODE,
|
||||
SERVICE_SET_HUMIDITY,
|
||||
SERVICE_SET_HVAC_MODE,
|
||||
@@ -605,6 +606,7 @@ async def test_temperature_validation(
|
||||
assert state.attributes.get(ATTR_CURRENT_TEMPERATURE) is None
|
||||
assert state.attributes.get(ATTR_MIN_TEMP) == 7
|
||||
assert state.attributes.get(ATTR_MAX_TEMP) == 35
|
||||
assert state.attributes.get(ATTR_TEMPERATURE_UNIT) == UnitOfTemperature.CELSIUS
|
||||
|
||||
with pytest.raises(
|
||||
ServiceValidationError,
|
||||
@@ -702,6 +704,7 @@ async def test_target_temp_high_higher_than_low(
|
||||
assert state.attributes.get(ATTR_CURRENT_TEMPERATURE) == 15
|
||||
assert state.attributes.get(ATTR_MIN_TEMP) == 7
|
||||
assert state.attributes.get(ATTR_MAX_TEMP) == 35
|
||||
assert state.attributes.get(ATTR_TEMPERATURE_UNIT) == UnitOfTemperature.CELSIUS
|
||||
|
||||
with pytest.raises(
|
||||
ServiceValidationError,
|
||||
|
||||
@@ -70,6 +70,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'target_temp_step': 0.1,
|
||||
'temperature': 5.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate0',
|
||||
|
||||
@@ -75,6 +75,7 @@
|
||||
'target_temp_high': None,
|
||||
'target_temp_low': None,
|
||||
'temperature': 68,
|
||||
'temperature_unit': <UnitOfTemperature.FAHRENHEIT: '°F'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_controller_residential_thermostat_v2',
|
||||
|
||||
@@ -81,6 +81,7 @@
|
||||
'offset': 0,
|
||||
'supported_features': <ClimateEntityFeature: 393>,
|
||||
'temperature': 22.2,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.zen_01',
|
||||
@@ -172,6 +173,7 @@
|
||||
'offset': 0,
|
||||
'supported_features': <ClimateEntityFeature: 393>,
|
||||
'temperature': 22.2,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.zen_01',
|
||||
@@ -282,6 +284,7 @@
|
||||
]),
|
||||
'supported_features': <ClimateEntityFeature: 409>,
|
||||
'temperature': 22.2,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.zen_01',
|
||||
@@ -352,6 +355,7 @@
|
||||
'offset': 10,
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'temperature': 22.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
'valve': 30,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
@@ -420,6 +424,7 @@
|
||||
'min_temp': 7,
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
'valve': 30,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
@@ -491,6 +496,7 @@
|
||||
'offset': 10,
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'temperature': 22.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
'valve': 30,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
@@ -561,6 +567,7 @@
|
||||
'offset': 0,
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'temperature': 21.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
'valve': 24,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 20,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test',
|
||||
|
||||
@@ -70,6 +70,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 25.5,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.mock_heater',
|
||||
@@ -150,6 +151,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 25.5,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.mock_heater',
|
||||
|
||||
@@ -34,5 +34,6 @@
|
||||
]),
|
||||
'target_temp_step': 2,
|
||||
'temperature': 20,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
})
|
||||
# ---
|
||||
|
||||
@@ -205,6 +205,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 16.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.bathroom_dn',
|
||||
@@ -252,6 +253,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 16.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.bathroom_dn',
|
||||
@@ -298,6 +300,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 17.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.dead_zone',
|
||||
@@ -344,6 +347,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 17.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.dead_zone',
|
||||
@@ -392,6 +396,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 21.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.front_room',
|
||||
@@ -440,6 +445,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 21.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.front_room',
|
||||
@@ -487,6 +493,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 17.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.kids_room',
|
||||
@@ -534,6 +541,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 17.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.kids_room',
|
||||
@@ -581,6 +589,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 17.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.kitchen',
|
||||
@@ -628,6 +637,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 17.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.kitchen',
|
||||
@@ -675,6 +685,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 16.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.main_bedroom',
|
||||
@@ -722,6 +733,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 16.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.main_bedroom',
|
||||
@@ -769,6 +781,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 17.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.main_room',
|
||||
@@ -816,6 +829,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 17.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.main_room',
|
||||
@@ -855,6 +869,7 @@
|
||||
}),
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 400>,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.my_home',
|
||||
@@ -894,6 +909,7 @@
|
||||
}),
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 400>,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.my_home',
|
||||
@@ -941,6 +957,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 14.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.spare_room',
|
||||
@@ -988,6 +1005,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 14.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.spare_room',
|
||||
@@ -1035,6 +1053,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 16.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.bathroom_dn',
|
||||
@@ -1081,6 +1100,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 17.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.dead_zone',
|
||||
@@ -1133,6 +1153,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 21.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.front_room',
|
||||
@@ -1180,6 +1201,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 17.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.kids_room',
|
||||
@@ -1227,6 +1249,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 17.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.kitchen',
|
||||
@@ -1274,6 +1297,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 16.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.main_bedroom',
|
||||
@@ -1325,6 +1349,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 17.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.main_room',
|
||||
@@ -1364,6 +1389,7 @@
|
||||
}),
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 400>,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.my_home',
|
||||
@@ -1411,6 +1437,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 16.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.bathroom_dn',
|
||||
@@ -1457,6 +1484,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 17.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.dead_zone',
|
||||
@@ -1505,6 +1533,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 21.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.front_room',
|
||||
@@ -1552,6 +1581,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 17.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.kids_room',
|
||||
@@ -1599,6 +1629,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 17.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.kitchen',
|
||||
@@ -1646,6 +1677,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 16.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.main_bedroom',
|
||||
@@ -1693,6 +1725,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 17.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.main_room',
|
||||
@@ -1732,6 +1765,7 @@
|
||||
}),
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 400>,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.my_home',
|
||||
@@ -1779,6 +1813,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 14.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.spare_room',
|
||||
@@ -1810,6 +1845,7 @@
|
||||
}),
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 384>,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.my_home',
|
||||
@@ -1857,6 +1893,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 21.5,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.thermostat',
|
||||
@@ -1893,6 +1930,7 @@
|
||||
}),
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 400>,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.my_home',
|
||||
@@ -1940,6 +1978,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 21.5,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.thermostat',
|
||||
@@ -1987,6 +2026,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 21.5,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.thermostat_2',
|
||||
@@ -2034,6 +2074,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 5.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.thermostat',
|
||||
@@ -2081,6 +2122,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 20.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.thermostat_2',
|
||||
@@ -2117,6 +2159,7 @@
|
||||
}),
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 400>,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.vr',
|
||||
@@ -2164,6 +2207,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 5.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.ba',
|
||||
@@ -2211,6 +2255,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 15.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.ka',
|
||||
@@ -2258,6 +2303,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 15.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.ka_2',
|
||||
@@ -2297,6 +2343,7 @@
|
||||
}),
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 400>,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.kl',
|
||||
@@ -2344,6 +2391,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 18.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.sl',
|
||||
@@ -2391,6 +2439,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 19.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.wo',
|
||||
@@ -2438,6 +2487,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 17.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.main_room',
|
||||
@@ -2477,6 +2527,7 @@
|
||||
}),
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 400>,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.my_home',
|
||||
@@ -2517,6 +2568,7 @@
|
||||
}),
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 400>,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.living_room',
|
||||
@@ -2564,6 +2616,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 15.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.thermostat',
|
||||
|
||||
@@ -72,6 +72,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 22.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.device_name',
|
||||
|
||||
@@ -67,6 +67,7 @@
|
||||
]),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 19.5,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.fake_name',
|
||||
|
||||
@@ -88,6 +88,7 @@
|
||||
]),
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 21.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.testserial123',
|
||||
@@ -186,6 +187,7 @@
|
||||
]),
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 21.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.testserial345',
|
||||
|
||||
@@ -72,6 +72,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'target_temp_step': 0.1,
|
||||
'temperature': 7,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.my_thermostat',
|
||||
@@ -96,6 +97,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'target_temp_step': 0.1,
|
||||
'temperature': 7.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.my_thermostat',
|
||||
|
||||
@@ -73,6 +73,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 4,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.bedroom',
|
||||
@@ -159,6 +160,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 4,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.ensuite',
|
||||
@@ -245,6 +247,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 4,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.guest_room',
|
||||
@@ -331,6 +334,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 4,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.hall',
|
||||
@@ -417,6 +421,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 4,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.kitchen',
|
||||
@@ -500,6 +505,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 4,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.lounge',
|
||||
@@ -586,6 +592,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 4,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.study',
|
||||
|
||||
@@ -42,6 +42,7 @@
|
||||
]),
|
||||
'target_temp_step': 1,
|
||||
'temperature': 25,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.fake_device_1',
|
||||
|
||||
@@ -57,6 +57,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'target_temp_step': 0.1,
|
||||
'temperature': 20.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_thermostat_1',
|
||||
@@ -124,6 +125,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'target_temp_step': 0.1,
|
||||
'temperature': 22.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_thermostat_2',
|
||||
@@ -193,6 +195,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'target_temp_step': 0.1,
|
||||
'temperature': 24.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_thermostat_3',
|
||||
@@ -275,6 +278,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 12.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_thermostat_4',
|
||||
@@ -353,6 +357,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 12.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_thermostat_5',
|
||||
|
||||
@@ -3801,6 +3801,7 @@
|
||||
'target_temp_high': None,
|
||||
'target_temp_low': None,
|
||||
'temperature': 22.2,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'entity_id': 'climate.homew',
|
||||
'state': 'heat',
|
||||
@@ -7214,6 +7215,7 @@
|
||||
'target_temp_high': None,
|
||||
'target_temp_low': None,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'entity_id': 'climate.thermostat',
|
||||
'state': 'off',
|
||||
@@ -8245,6 +8247,7 @@
|
||||
'target_temp_high': None,
|
||||
'target_temp_low': None,
|
||||
'temperature': 22.2,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'entity_id': 'climate.homew',
|
||||
'state': 'heat',
|
||||
@@ -8732,6 +8735,7 @@
|
||||
'target_temp_high': None,
|
||||
'target_temp_low': None,
|
||||
'temperature': 22.2,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'entity_id': 'climate.homew',
|
||||
'state': 'heat',
|
||||
@@ -9534,6 +9538,7 @@
|
||||
'target_temp_high': 25.6,
|
||||
'target_temp_low': 7.2,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'entity_id': 'climate.my_ecobee',
|
||||
'state': 'heat_cool',
|
||||
@@ -12105,6 +12110,7 @@
|
||||
'min_temp': 7,
|
||||
'supported_features': <ClimateEntityFeature: 384>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'entity_id': 'climate.89_living_room',
|
||||
'state': 'heat_cool',
|
||||
@@ -13807,6 +13813,7 @@
|
||||
'vertical',
|
||||
]),
|
||||
'target_temp_step': 1.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'entity_id': 'climate.89_living_room',
|
||||
'state': 'heat_cool',
|
||||
@@ -15073,6 +15080,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 393>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 24.5,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'entity_id': 'climate.air_conditioner_slaveid_1',
|
||||
'state': 'cool',
|
||||
@@ -18028,6 +18036,7 @@
|
||||
'target_temp_high': 29.5,
|
||||
'target_temp_low': 21,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'entity_id': 'climate.lennox',
|
||||
'state': 'heat_cool',
|
||||
@@ -19173,6 +19182,7 @@
|
||||
'min_temp': 7,
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'entity_id': 'climate.mysa_85dda9_thermostat',
|
||||
'state': 'off',
|
||||
@@ -22752,6 +22762,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'entity_id': 'climate.u_by_moen_015f44',
|
||||
'state': 'off',
|
||||
|
||||
@@ -34,5 +34,6 @@
|
||||
'target_temp_high': None,
|
||||
'target_temp_low': None,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
})
|
||||
# ---
|
||||
|
||||
@@ -58,6 +58,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'target_temp_step': 1,
|
||||
'temperature': 80,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.huum_sauna',
|
||||
|
||||
@@ -60,6 +60,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'temperature': 18.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.thermostat_1',
|
||||
@@ -130,6 +131,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'temperature': 18.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.thermostat_1',
|
||||
@@ -200,6 +202,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'temperature': 19.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.thermostat_1',
|
||||
@@ -270,6 +273,7 @@
|
||||
}),
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'temperature': 18.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.thermostat_1',
|
||||
|
||||
@@ -59,6 +59,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': 0.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.intellifire_thermostat',
|
||||
|
||||
@@ -83,6 +83,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 392>,
|
||||
'target_temp_step': 0.5,
|
||||
'temp_setpoint': 24.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.izone_controller_test_controller_123',
|
||||
@@ -155,6 +156,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 24.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
'zone_index': 0,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
|
||||
@@ -56,6 +56,7 @@
|
||||
'min_temp': 0.0,
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.testmodule_climate1',
|
||||
|
||||
@@ -99,6 +99,7 @@
|
||||
]),
|
||||
'target_temp_step': 2,
|
||||
'temperature': 66,
|
||||
'temperature_unit': <UnitOfTemperature.FAHRENHEIT: '°F'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_air_conditioner',
|
||||
|
||||
@@ -56,6 +56,7 @@
|
||||
'min_temp': 5.0,
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'temperature': 20.5,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.floor_heating_thermostat',
|
||||
@@ -122,6 +123,7 @@
|
||||
'min_temp': 5.0,
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'temperature': 22.5,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.connected_thermostat_ute_3000',
|
||||
@@ -188,6 +190,7 @@
|
||||
'min_temp': 10.0,
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'temperature': 17.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.eve_thermo_20ebp1701',
|
||||
@@ -254,6 +257,7 @@
|
||||
'min_temp': 10.0,
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'temperature': 17.5,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.eve_thermo_20ecd1701',
|
||||
@@ -326,6 +330,7 @@
|
||||
'target_temp_high': None,
|
||||
'target_temp_low': None,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.longan_link_hvac',
|
||||
@@ -392,6 +397,7 @@
|
||||
'min_temp': 5.0,
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'temperature': 20.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.mock_air_purifier',
|
||||
@@ -466,6 +472,7 @@
|
||||
'min_temp': 16.0,
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'temperature': 20.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.room_airconditioner',
|
||||
@@ -539,6 +546,7 @@
|
||||
'target_temp_high': 26.0,
|
||||
'target_temp_low': 20.0,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.mock_thermostat',
|
||||
@@ -609,6 +617,7 @@
|
||||
'min_temp': 4.4,
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'temperature': 21.7,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.x2s_smart_thermostat',
|
||||
@@ -676,6 +685,7 @@
|
||||
'min_temp': 5.0,
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'temperature': 18.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.smart_radiator_thermostat_x',
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 393>,
|
||||
'target_temp_step': 1,
|
||||
'temperature': 16,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.melissa_12345678',
|
||||
|
||||
@@ -56,6 +56,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': -18,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.freezer',
|
||||
@@ -122,6 +123,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': 4,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.refrigerator',
|
||||
@@ -188,6 +190,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': -18,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.freezer',
|
||||
@@ -254,6 +257,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': 4,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.refrigerator',
|
||||
@@ -320,6 +324,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': -18,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.fridge_freezer_freezer',
|
||||
@@ -386,6 +391,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.fridge_freezer_freezer_2',
|
||||
@@ -452,6 +458,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': 4,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.fridge_freezer_refrigerator',
|
||||
@@ -518,6 +525,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.fridge_freezer_refrigerator_2',
|
||||
@@ -584,6 +592,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': -25,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.fridge_freezer_zone_3',
|
||||
@@ -650,6 +659,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.fridge_freezer_zone_3_2',
|
||||
@@ -716,6 +726,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': -18,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.fridge_freezer_freezer',
|
||||
@@ -782,6 +793,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.fridge_freezer_freezer_2',
|
||||
@@ -848,6 +860,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': 4,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.fridge_freezer_refrigerator',
|
||||
@@ -914,6 +927,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.fridge_freezer_refrigerator_2',
|
||||
@@ -980,6 +994,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': -25,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.fridge_freezer_zone_3',
|
||||
@@ -1046,6 +1061,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.fridge_freezer_zone_3_2',
|
||||
|
||||
@@ -70,6 +70,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 17>,
|
||||
'target_temp_step': 0.2,
|
||||
'temperature': 21.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.buro',
|
||||
|
||||
@@ -155,6 +155,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 7,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.cocina',
|
||||
@@ -240,6 +241,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 22,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.corridor',
|
||||
@@ -326,6 +328,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 7,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.entrada',
|
||||
@@ -413,6 +416,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 12,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.livingroom',
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
'target_temp_low': 21.0,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s2',
|
||||
@@ -66,6 +67,7 @@
|
||||
'target_temp_low': 21.0,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s3',
|
||||
@@ -115,6 +117,7 @@
|
||||
'target_temp_low': 21.0,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s2',
|
||||
@@ -142,6 +145,7 @@
|
||||
'target_temp_low': None,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s2',
|
||||
@@ -169,6 +173,7 @@
|
||||
'target_temp_low': None,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 21.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s2',
|
||||
@@ -196,6 +201,7 @@
|
||||
'target_temp_low': 21.0,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s2',
|
||||
@@ -223,6 +229,7 @@
|
||||
'target_temp_low': 21.0,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s2',
|
||||
@@ -250,6 +257,7 @@
|
||||
'target_temp_low': 21.0,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s2',
|
||||
@@ -277,6 +285,7 @@
|
||||
'target_temp_low': None,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s2',
|
||||
@@ -304,6 +313,7 @@
|
||||
'target_temp_low': None,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s2',
|
||||
@@ -330,6 +340,7 @@
|
||||
'target_temp_low': 21.0,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s1',
|
||||
@@ -356,6 +367,7 @@
|
||||
'target_temp_low': None,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s1',
|
||||
@@ -382,6 +394,7 @@
|
||||
'target_temp_low': None,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 21.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s1',
|
||||
@@ -408,6 +421,7 @@
|
||||
'target_temp_low': 21.0,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s1',
|
||||
@@ -434,6 +448,7 @@
|
||||
'target_temp_low': 21.0,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s1',
|
||||
@@ -460,6 +475,7 @@
|
||||
'target_temp_low': 21.0,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s1',
|
||||
@@ -486,6 +502,7 @@
|
||||
'target_temp_low': None,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s1',
|
||||
@@ -512,6 +529,7 @@
|
||||
'target_temp_low': None,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s1',
|
||||
@@ -539,6 +557,7 @@
|
||||
'target_temp_low': 21.0,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s1',
|
||||
@@ -566,6 +585,7 @@
|
||||
'target_temp_low': None,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s1',
|
||||
@@ -593,6 +613,7 @@
|
||||
'target_temp_low': None,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 21.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s1',
|
||||
@@ -620,6 +641,7 @@
|
||||
'target_temp_low': 21.0,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s1',
|
||||
@@ -647,6 +669,7 @@
|
||||
'target_temp_low': 21.0,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s1',
|
||||
@@ -674,6 +697,7 @@
|
||||
'target_temp_low': 21.0,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s1',
|
||||
@@ -701,6 +725,7 @@
|
||||
'target_temp_low': None,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s1',
|
||||
@@ -728,6 +753,7 @@
|
||||
'target_temp_low': None,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.climate_system_s1',
|
||||
|
||||
@@ -75,6 +75,7 @@
|
||||
]),
|
||||
'supported_features': <ClimateEntityFeature: 145>,
|
||||
'temperature': 200,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.thermostat',
|
||||
|
||||
@@ -78,6 +78,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 393>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': 21,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.stove',
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'target_temp_step': 0.1,
|
||||
'temperature': 15.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.bathroom',
|
||||
@@ -162,6 +163,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'target_temp_step': 0.1,
|
||||
'temperature': 20.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.living_room',
|
||||
@@ -246,6 +248,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 17>,
|
||||
'target_temp_step': 0.1,
|
||||
'temperature': 14.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.badkamer',
|
||||
@@ -330,6 +333,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 17>,
|
||||
'target_temp_step': 0.1,
|
||||
'temperature': 13.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.bios',
|
||||
@@ -412,6 +416,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 17>,
|
||||
'target_temp_step': 0.1,
|
||||
'temperature': 5.5,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.garage',
|
||||
@@ -496,6 +501,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 17>,
|
||||
'target_temp_step': 0.1,
|
||||
'temperature': 15.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.jessie',
|
||||
@@ -580,6 +586,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 17>,
|
||||
'target_temp_step': 0.1,
|
||||
'temperature': 21.5,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.woonkamer',
|
||||
@@ -665,6 +672,7 @@
|
||||
'target_temp_high': 30.0,
|
||||
'target_temp_low': 20.5,
|
||||
'target_temp_step': 0.1,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.anna',
|
||||
@@ -750,6 +758,7 @@
|
||||
'target_temp_high': 30.0,
|
||||
'target_temp_low': 20.5,
|
||||
'target_temp_step': 0.1,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.anna',
|
||||
@@ -834,6 +843,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 17>,
|
||||
'target_temp_step': 0.1,
|
||||
'temperature': 19.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.anna',
|
||||
|
||||
@@ -83,6 +83,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 25>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': 80,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.saunum_leil',
|
||||
|
||||
@@ -55,6 +55,7 @@
|
||||
'min_temp': 0,
|
||||
'supported_features': <ClimateEntityFeature: 384>,
|
||||
'target_temp_step': 1,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.bedroom',
|
||||
@@ -165,6 +166,7 @@
|
||||
]),
|
||||
'target_temp_step': 1,
|
||||
'temperature': 25,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.hallway',
|
||||
@@ -241,6 +243,7 @@
|
||||
'min_temp': 0,
|
||||
'supported_features': <ClimateEntityFeature: 392>,
|
||||
'target_temp_step': 1,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.kitchen',
|
||||
|
||||
@@ -57,6 +57,7 @@
|
||||
'min_temp': 5,
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'temperature': 19.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_room_1',
|
||||
@@ -124,6 +125,7 @@
|
||||
'min_temp': 5,
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'temperature': 6.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_room_2',
|
||||
|
||||
@@ -57,6 +57,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 257>,
|
||||
'target_temp_step': 0.1,
|
||||
'temperature': 17.1,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.trv_name',
|
||||
@@ -137,6 +138,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 4,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_name',
|
||||
@@ -207,6 +209,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 23,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_name',
|
||||
@@ -285,6 +288,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 27,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_name',
|
||||
@@ -387,6 +391,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 413>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 20.5,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_name',
|
||||
@@ -457,6 +462,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 23,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_name',
|
||||
|
||||
@@ -57,6 +57,7 @@
|
||||
'min_temp': 7,
|
||||
'supported_features': <ClimateEntityFeature: 393>,
|
||||
'temperature': 20.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.aux_a_c_on_off',
|
||||
@@ -125,6 +126,7 @@
|
||||
'target_temp_high': None,
|
||||
'target_temp_low': None,
|
||||
'temperature': 22.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.radiator_thermostat_ii_m_wohnzimmer',
|
||||
@@ -246,6 +248,7 @@
|
||||
'both',
|
||||
]),
|
||||
'temperature': 20,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.ar_varanda',
|
||||
@@ -316,6 +319,7 @@
|
||||
'min_temp': 26,
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'temperature': 35,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.heat_pump_indoor1',
|
||||
@@ -421,6 +425,7 @@
|
||||
'swing_mode': 'off',
|
||||
'swing_modes': None,
|
||||
'temperature': 25,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.ac_office_granit',
|
||||
@@ -550,6 +555,7 @@
|
||||
'horizontal',
|
||||
]),
|
||||
'temperature': 19,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.clim_salon',
|
||||
@@ -675,6 +681,7 @@
|
||||
'both',
|
||||
]),
|
||||
'temperature': 23,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.aire_dormitorio_principal',
|
||||
@@ -762,6 +769,7 @@
|
||||
'min_temp': 7,
|
||||
'supported_features': <ClimateEntityFeature: 393>,
|
||||
'temperature': 18,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.corridor_a_c',
|
||||
@@ -832,6 +840,7 @@
|
||||
'min_temp': 25,
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'temperature': 25,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.eco_heating_system_indoor',
|
||||
@@ -902,6 +911,7 @@
|
||||
'min_temp': 25,
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'temperature': 30,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.heat_pump_main_indoor',
|
||||
@@ -971,6 +981,7 @@
|
||||
'max_temp': 35,
|
||||
'min_temp': 7,
|
||||
'supported_features': <ClimateEntityFeature: 384>,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.warmepumpe_indoor1',
|
||||
@@ -1040,6 +1051,7 @@
|
||||
'max_temp': 35,
|
||||
'min_temp': 7,
|
||||
'supported_features': <ClimateEntityFeature: 384>,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.warmepumpe_indoor2',
|
||||
@@ -1121,6 +1133,7 @@
|
||||
'target_temp_high': None,
|
||||
'target_temp_low': None,
|
||||
'temperature': 21.7,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.main_floor',
|
||||
@@ -1188,6 +1201,7 @@
|
||||
'target_temp_high': None,
|
||||
'target_temp_low': None,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.downstairs',
|
||||
@@ -1252,6 +1266,7 @@
|
||||
'target_temp_high': None,
|
||||
'target_temp_low': None,
|
||||
'temperature': 23.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.thermostat_kuche',
|
||||
@@ -1321,6 +1336,7 @@
|
||||
'target_temp_high': None,
|
||||
'target_temp_low': None,
|
||||
'temperature': 19.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.hall_thermostat',
|
||||
@@ -1408,6 +1424,7 @@
|
||||
'target_temp_high': 23.9,
|
||||
'target_temp_low': 21.7,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.thermostat',
|
||||
@@ -1482,6 +1499,7 @@
|
||||
'target_temp_high': None,
|
||||
'target_temp_low': None,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.virtual_thermostat',
|
||||
|
||||
@@ -192,6 +192,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 409>,
|
||||
'target_temp_step': 1,
|
||||
'temperature': 17.8,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.air_conditioning',
|
||||
@@ -311,6 +312,7 @@
|
||||
]),
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': 25.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.air_conditioning_with_fanlevel',
|
||||
@@ -428,6 +430,7 @@
|
||||
]),
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': 20.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.air_conditioning_with_swing',
|
||||
@@ -515,6 +518,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'target_temp_step': 1,
|
||||
'temperature': 20.5,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.baseboard_heater',
|
||||
|
||||
@@ -60,6 +60,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'target_temp_step': 5,
|
||||
'temperature': 40,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_cabin_overheat_protection',
|
||||
@@ -139,6 +140,7 @@
|
||||
]),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 22.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_climate',
|
||||
@@ -208,6 +210,7 @@
|
||||
'min_temp': 30,
|
||||
'supported_features': <ClimateEntityFeature: 384>,
|
||||
'target_temp_step': 5,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_cabin_overheat_protection',
|
||||
@@ -287,6 +290,7 @@
|
||||
]),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 22.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_climate',
|
||||
@@ -356,6 +360,7 @@
|
||||
'min_temp': 30,
|
||||
'supported_features': <ClimateEntityFeature: 384>,
|
||||
'target_temp_step': 5,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_cabin_overheat_protection',
|
||||
@@ -435,6 +440,7 @@
|
||||
]),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_climate',
|
||||
|
||||
@@ -60,6 +60,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'target_temp_step': 5,
|
||||
'temperature': 40,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_cabin_overheat_protection',
|
||||
@@ -148,6 +149,7 @@
|
||||
]),
|
||||
'supported_features': <ClimateEntityFeature: 409>,
|
||||
'temperature': 22.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_climate',
|
||||
@@ -217,6 +219,7 @@
|
||||
'min_temp': 30,
|
||||
'supported_features': <ClimateEntityFeature: 384>,
|
||||
'target_temp_step': 5,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_cabin_overheat_protection',
|
||||
@@ -305,6 +308,7 @@
|
||||
]),
|
||||
'supported_features': <ClimateEntityFeature: 409>,
|
||||
'temperature': 22.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_climate',
|
||||
@@ -421,6 +425,7 @@
|
||||
'min_temp': 30,
|
||||
'supported_features': <ClimateEntityFeature: 384>,
|
||||
'target_temp_step': 5,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_cabin_overheat_protection',
|
||||
@@ -450,6 +455,7 @@
|
||||
]),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 21.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_climate',
|
||||
@@ -479,6 +485,7 @@
|
||||
]),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 21.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_climate',
|
||||
|
||||
@@ -69,6 +69,7 @@
|
||||
]),
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'temperature': 22.5,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.test_climate',
|
||||
|
||||
@@ -57,6 +57,7 @@
|
||||
'min_temp': 5,
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'temperature': 22.2,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.thermostat',
|
||||
|
||||
@@ -79,6 +79,7 @@
|
||||
'target_temp_low': 68,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.FAHRENHEIT: '°F'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.living_room',
|
||||
|
||||
@@ -67,6 +67,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 393>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': 23.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.air_conditioner',
|
||||
@@ -222,6 +223,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 17>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 12.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.bathroom_radiator',
|
||||
@@ -289,6 +291,7 @@
|
||||
'min_temp': 7,
|
||||
'supported_features': <ClimateEntityFeature: 384>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.boiler_temperature_controller',
|
||||
@@ -372,6 +375,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 393>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': 25.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.clima_cucina',
|
||||
@@ -440,6 +444,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 4.6,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.el_termostato_de_la_cocina',
|
||||
@@ -517,6 +522,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 17>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': 35.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.empore',
|
||||
@@ -594,6 +600,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.floor_thermostat_kitchen',
|
||||
@@ -657,6 +664,7 @@
|
||||
'min_temp': 7,
|
||||
'supported_features': <ClimateEntityFeature: 0>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.geti_solar_pv_water_heater',
|
||||
@@ -721,6 +729,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 35.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.itc_308_wifi_thermostat',
|
||||
@@ -798,6 +807,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 21.5,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.kabinet',
|
||||
@@ -875,6 +885,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 75.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.master_bedroom_ac',
|
||||
@@ -960,6 +971,7 @@
|
||||
]),
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': 66.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.mini_split',
|
||||
@@ -1023,6 +1035,7 @@
|
||||
'min_temp': 7,
|
||||
'supported_features': <ClimateEntityFeature: 0>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.mr_pure',
|
||||
@@ -1098,6 +1111,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 5.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.polotentsosushitel',
|
||||
@@ -1177,6 +1191,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 17>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 5.9,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.salon',
|
||||
@@ -1254,6 +1269,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': 12.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.smart_thermostats',
|
||||
@@ -1331,6 +1347,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 393>,
|
||||
'target_temp_step': 1.0,
|
||||
'temperature': 16.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.sove',
|
||||
@@ -1399,6 +1416,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'target_temp_step': 0.1,
|
||||
'temperature': 23.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.term_prizemi',
|
||||
@@ -1467,6 +1485,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 385>,
|
||||
'target_temp_step': 0.5,
|
||||
'temperature': 22.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.wifi_smart_gas_boiler_thermostat',
|
||||
|
||||
@@ -69,6 +69,7 @@
|
||||
]),
|
||||
'supported_features': <ClimateEntityFeature: 17>,
|
||||
'temperature': 21.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.living_room_temperature',
|
||||
|
||||
@@ -68,6 +68,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'target_temp_step': 1,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
'vicare_programs': list([
|
||||
'comfort',
|
||||
'eco',
|
||||
@@ -155,6 +156,7 @@
|
||||
'supported_features': <ClimateEntityFeature: 401>,
|
||||
'target_temp_step': 1,
|
||||
'temperature': None,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
'vicare_programs': list([
|
||||
'comfort',
|
||||
'eco',
|
||||
|
||||
@@ -58,6 +58,7 @@
|
||||
'min_temp': 5.0,
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'temperature': 21.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.bedroom_thermostat',
|
||||
@@ -126,6 +127,7 @@
|
||||
'min_temp': 5.0,
|
||||
'supported_features': <ClimateEntityFeature: 1>,
|
||||
'temperature': 22.0,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.living_room_thermostat',
|
||||
|
||||
@@ -87,6 +87,7 @@
|
||||
]),
|
||||
'target_temp_step': 1,
|
||||
'temperature': 20,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.aircon_said1',
|
||||
@@ -184,6 +185,7 @@
|
||||
]),
|
||||
'target_temp_step': 1,
|
||||
'temperature': 20,
|
||||
'temperature_unit': <UnitOfTemperature.CELSIUS: '°C'>,
|
||||
}),
|
||||
'context': <ANY>,
|
||||
'entity_id': 'climate.aircon_said2',
|
||||
|
||||
Reference in New Issue
Block a user