Split program and mach mode of ac #75
This commit is contained in:
parent
78727e89cd
commit
fbd1bdf5ba
@ -22,7 +22,7 @@ from homeassistant.const import (
|
|||||||
from homeassistant.core import callback
|
from homeassistant.core import callback
|
||||||
from pyhon.appliance import HonAppliance
|
from pyhon.appliance import HonAppliance
|
||||||
|
|
||||||
from .const import HON_HVAC_MODE, HON_FAN, HON_HVAC_PROGRAM, DOMAIN
|
from .const import HON_HVAC_MODE, HON_FAN, DOMAIN
|
||||||
from .hon import HonEntity
|
from .hon import HonEntity
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
@ -115,13 +115,14 @@ class HonACClimateEntity(HonEntity, ClimateEntity):
|
|||||||
super().__init__(hass, entry, device, description)
|
super().__init__(hass, entry, device, description)
|
||||||
|
|
||||||
self._attr_temperature_unit = TEMP_CELSIUS
|
self._attr_temperature_unit = TEMP_CELSIUS
|
||||||
self._attr_target_temperature_step = device.settings["settings.tempSel"].step
|
self._set_temperature_bound()
|
||||||
self._attr_max_temp = device.settings["settings.tempSel"].max
|
|
||||||
self._attr_min_temp = device.settings["settings.tempSel"].min
|
|
||||||
|
|
||||||
self._attr_hvac_modes = [HVACMode.OFF]
|
self._attr_hvac_modes = [HVACMode.OFF]
|
||||||
for mode in device.settings["settings.machMode"].values:
|
for mode in device.settings["settings.machMode"].values:
|
||||||
self._attr_hvac_modes.append(HON_HVAC_MODE[mode])
|
self._attr_hvac_modes.append(HON_HVAC_MODE[mode])
|
||||||
|
self._attr_preset_modes = []
|
||||||
|
for mode in device.settings["startProgram.program"].values:
|
||||||
|
self._attr_preset_modes.append(mode)
|
||||||
self._attr_fan_modes = [FAN_OFF]
|
self._attr_fan_modes = [FAN_OFF]
|
||||||
for mode in device.settings["settings.windSpeed"].values:
|
for mode in device.settings["settings.windSpeed"].values:
|
||||||
self._attr_fan_modes.append(HON_FAN[mode])
|
self._attr_fan_modes.append(HON_FAN[mode])
|
||||||
@ -135,10 +136,18 @@ class HonACClimateEntity(HonEntity, ClimateEntity):
|
|||||||
ClimateEntityFeature.TARGET_TEMPERATURE
|
ClimateEntityFeature.TARGET_TEMPERATURE
|
||||||
| ClimateEntityFeature.FAN_MODE
|
| ClimateEntityFeature.FAN_MODE
|
||||||
| ClimateEntityFeature.SWING_MODE
|
| ClimateEntityFeature.SWING_MODE
|
||||||
|
| ClimateEntityFeature.PRESET_MODE
|
||||||
)
|
)
|
||||||
|
|
||||||
self._handle_coordinator_update(update=False)
|
self._handle_coordinator_update(update=False)
|
||||||
|
|
||||||
|
def _set_temperature_bound(self) -> None:
|
||||||
|
self._attr_target_temperature_step = self._device.settings[
|
||||||
|
"settings.tempSel"
|
||||||
|
].step
|
||||||
|
self._attr_max_temp = self._device.settings["settings.tempSel"].max
|
||||||
|
self._attr_min_temp = self._device.settings["settings.tempSel"].min
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def target_temperature(self) -> int | None:
|
def target_temperature(self) -> int | None:
|
||||||
"""Return the temperature we try to reach."""
|
"""Return the temperature we try to reach."""
|
||||||
@ -166,13 +175,31 @@ class HonACClimateEntity(HonEntity, ClimateEntity):
|
|||||||
async def async_set_hvac_mode(self, hvac_mode):
|
async def async_set_hvac_mode(self, hvac_mode):
|
||||||
self._attr_hvac_mode = hvac_mode
|
self._attr_hvac_mode = hvac_mode
|
||||||
if hvac_mode == HVACMode.OFF:
|
if hvac_mode == HVACMode.OFF:
|
||||||
command = "stopProgram"
|
await self._device.commands["stopProgram"].send()
|
||||||
|
self._device.sync_command("stopProgram", "settings")
|
||||||
else:
|
else:
|
||||||
mode = HON_HVAC_PROGRAM[hvac_mode]
|
self._device.settings["settings.onOffStatus"].value = "1"
|
||||||
self._device.settings["startProgram.program"].value = mode
|
setting = self._device.settings["settings.machMode"]
|
||||||
command = "startProgram"
|
modes = {HON_HVAC_MODE[number]: number for number in setting.values}
|
||||||
await self._device.commands[command].send()
|
setting.value = modes[hvac_mode]
|
||||||
self._device.sync_command(command, "settings")
|
await self._device.commands["settings"].send()
|
||||||
|
self.async_write_ha_state()
|
||||||
|
|
||||||
|
@property
|
||||||
|
def preset_mode(self) -> str | None:
|
||||||
|
"""Return the current Preset for this channel."""
|
||||||
|
return None
|
||||||
|
|
||||||
|
async def async_set_preset_mode(self, preset_mode: str) -> None:
|
||||||
|
"""Set the new preset mode."""
|
||||||
|
if program := self._device.settings.get(f"startProgram.program"):
|
||||||
|
program.value = preset_mode
|
||||||
|
self._device.sync_command("startProgram", "settings")
|
||||||
|
self._set_temperature_bound()
|
||||||
|
self._handle_coordinator_update(update=False)
|
||||||
|
await self.coordinator.async_refresh()
|
||||||
|
self._attr_preset_mode = preset_mode
|
||||||
|
await self._device.commands["startProgram"].send()
|
||||||
self.async_write_ha_state()
|
self.async_write_ha_state()
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
@ -236,6 +236,8 @@ class HonNumberEntity(HonEntity, NumberEntity):
|
|||||||
setting.value = value
|
setting.value = value
|
||||||
command = self.entity_description.key.split(".")[0]
|
command = self.entity_description.key.split(".")[0]
|
||||||
await self._device.commands[command].send()
|
await self._device.commands[command].send()
|
||||||
|
if command != "settings":
|
||||||
|
self._device.sync_command(command, "settings")
|
||||||
await self.coordinator.async_refresh()
|
await self.coordinator.async_refresh()
|
||||||
|
|
||||||
@callback
|
@callback
|
||||||
|
@ -201,8 +201,6 @@ class HonConfigSelectEntity(HonEntity, SelectEntity):
|
|||||||
async def async_select_option(self, option: str) -> None:
|
async def async_select_option(self, option: str) -> None:
|
||||||
setting = self._device.settings[self.entity_description.key]
|
setting = self._device.settings[self.entity_description.key]
|
||||||
setting.value = self._option_to_number(option, setting.values)
|
setting.value = self._option_to_number(option, setting.values)
|
||||||
command = self.entity_description.key.split(".")[0]
|
|
||||||
await self._device.commands[command].send()
|
|
||||||
await self.coordinator.async_refresh()
|
await self.coordinator.async_refresh()
|
||||||
|
|
||||||
@callback
|
@callback
|
||||||
@ -224,6 +222,10 @@ class HonSelectEntity(HonConfigSelectEntity):
|
|||||||
async def async_select_option(self, option: str) -> None:
|
async def async_select_option(self, option: str) -> None:
|
||||||
setting = self._device.settings[self.entity_description.key]
|
setting = self._device.settings[self.entity_description.key]
|
||||||
setting.value = self._option_to_number(option, setting.values)
|
setting.value = self._option_to_number(option, setting.values)
|
||||||
|
command = self.entity_description.key.split(".")[0]
|
||||||
|
await self._device.commands[command].send()
|
||||||
|
if command != "settings":
|
||||||
|
self._device.sync_command(command, "settings")
|
||||||
await self.coordinator.async_refresh()
|
await self.coordinator.async_refresh()
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
@ -1839,7 +1839,31 @@
|
|||||||
},
|
},
|
||||||
"climate": {
|
"climate": {
|
||||||
"air_conditioner": {
|
"air_conditioner": {
|
||||||
"name": "Klimatizační jednotka"
|
"name": "Klimatizační jednotka",
|
||||||
|
"state_attributes": {
|
||||||
|
"preset_mode": {
|
||||||
|
"name": "Programy",
|
||||||
|
"state": {
|
||||||
|
"iot_10_heating": "Funkce Vytápění 10 °C",
|
||||||
|
"iot_auto": "Auto",
|
||||||
|
"iot_cool": "Chlazení",
|
||||||
|
"iot_dry": "Odvlhčování",
|
||||||
|
"iot_fan": "Ventilátor",
|
||||||
|
"iot_heat": "Vytápění",
|
||||||
|
"iot_nano_aqua": "Nano Aqua",
|
||||||
|
"iot_purify": "Automatické čištění",
|
||||||
|
"iot_self_clean": "Samočištění zamrazením",
|
||||||
|
"iot_self_clean_56": "Samočištění 56°C sterilizace ",
|
||||||
|
"iot_simple_start": "Spustit nyní",
|
||||||
|
"iot_uv": "UV",
|
||||||
|
"iot_uv_and_auto": "UV + auto",
|
||||||
|
"iot_uv_and_cool": "UV + zchlazení",
|
||||||
|
"iot_uv_and_dry": "UV + odstranění vlhkosti",
|
||||||
|
"iot_uv_and_fan": "UV + ventilátor",
|
||||||
|
"iot_uv_and_heat": "UV + ohřev"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"fridge": {
|
"fridge": {
|
||||||
"name": "Chladnička",
|
"name": "Chladnička",
|
||||||
|
@ -1839,7 +1839,31 @@
|
|||||||
},
|
},
|
||||||
"climate": {
|
"climate": {
|
||||||
"air_conditioner": {
|
"air_conditioner": {
|
||||||
"name": "Klimaanlage"
|
"name": "Klimaanlage",
|
||||||
|
"state_attributes": {
|
||||||
|
"preset_mode": {
|
||||||
|
"name": "Programme",
|
||||||
|
"state": {
|
||||||
|
"iot_10_heating": "10°C Heizfunktion",
|
||||||
|
"iot_auto": "Auto",
|
||||||
|
"iot_cool": "Kühl",
|
||||||
|
"iot_dry": "Trocken",
|
||||||
|
"iot_fan": "Ventilator",
|
||||||
|
"iot_heat": "Heizen",
|
||||||
|
"iot_nano_aqua": "Nano Aqua",
|
||||||
|
"iot_purify": "Selbst reinigen",
|
||||||
|
"iot_self_clean": "Self-Clean",
|
||||||
|
"iot_self_clean_56": "Steri-Clean 56°C",
|
||||||
|
"iot_simple_start": "Jetzt beginnen",
|
||||||
|
"iot_uv": "UV",
|
||||||
|
"iot_uv_and_auto": "UV + Auto",
|
||||||
|
"iot_uv_and_cool": "UV + Kalt",
|
||||||
|
"iot_uv_and_dry": "UV + Entfeuchter",
|
||||||
|
"iot_uv_and_fan": "UV + Gebläse",
|
||||||
|
"iot_uv_and_heat": "UV + Heizen"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"fridge": {
|
"fridge": {
|
||||||
"name": "Kühlschrank",
|
"name": "Kühlschrank",
|
||||||
|
@ -1839,7 +1839,31 @@
|
|||||||
},
|
},
|
||||||
"climate": {
|
"climate": {
|
||||||
"air_conditioner": {
|
"air_conditioner": {
|
||||||
"name": "Κλιματιστικό"
|
"name": "Κλιματιστικό",
|
||||||
|
"state_attributes": {
|
||||||
|
"preset_mode": {
|
||||||
|
"name": "Προγράμματα",
|
||||||
|
"state": {
|
||||||
|
"iot_10_heating": "10° C Λειτουργία θέρμανσης",
|
||||||
|
"iot_auto": "Αυτόματο",
|
||||||
|
"iot_cool": "Ψύξη",
|
||||||
|
"iot_dry": "Στέγνωμα",
|
||||||
|
"iot_fan": "Ανεμιστήρας",
|
||||||
|
"iot_heat": "Ζέστη",
|
||||||
|
"iot_nano_aqua": "Nano Aqua",
|
||||||
|
"iot_purify": "Αυτοκαθαρισμός",
|
||||||
|
"iot_self_clean": "Αυτοκαθαρισμός",
|
||||||
|
"iot_self_clean_56": "Steri-Clean 56°C",
|
||||||
|
"iot_simple_start": "Εκκίνηση τώρα",
|
||||||
|
"iot_uv": "UV",
|
||||||
|
"iot_uv_and_auto": "UV + Auto",
|
||||||
|
"iot_uv_and_cool": "UV + Ψύξη",
|
||||||
|
"iot_uv_and_dry": "UV + Αφυγραντήρας",
|
||||||
|
"iot_uv_and_fan": "UV + Ανεμιστήρας",
|
||||||
|
"iot_uv_and_heat": "UV + Θέρμανση"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"fridge": {
|
"fridge": {
|
||||||
"name": "Ψυγείο",
|
"name": "Ψυγείο",
|
||||||
|
@ -1868,7 +1868,31 @@
|
|||||||
},
|
},
|
||||||
"climate": {
|
"climate": {
|
||||||
"air_conditioner": {
|
"air_conditioner": {
|
||||||
"name": "Air conditioner"
|
"name": "Air conditioner",
|
||||||
|
"state_attributes": {
|
||||||
|
"preset_mode": {
|
||||||
|
"name": "Programs",
|
||||||
|
"state": {
|
||||||
|
"iot_10_heating": "10°C Heating function",
|
||||||
|
"iot_auto": "Auto",
|
||||||
|
"iot_cool": "Cool",
|
||||||
|
"iot_dry": "Dry",
|
||||||
|
"iot_fan": "Fan",
|
||||||
|
"iot_heat": "Heat",
|
||||||
|
"iot_nano_aqua": "Nano Aqua",
|
||||||
|
"iot_purify": "Self-purify",
|
||||||
|
"iot_self_clean": "Self-clean",
|
||||||
|
"iot_self_clean_56": "Steri-Clean 56°C",
|
||||||
|
"iot_simple_start": "Start now",
|
||||||
|
"iot_uv": "UV",
|
||||||
|
"iot_uv_and_auto": "UV + Auto",
|
||||||
|
"iot_uv_and_cool": "UV + Cold",
|
||||||
|
"iot_uv_and_dry": "UV + Dehumidifier",
|
||||||
|
"iot_uv_and_fan": "UV + Fan",
|
||||||
|
"iot_uv_and_heat": "UV + Heat"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"fridge": {
|
"fridge": {
|
||||||
"name": "Fridge",
|
"name": "Fridge",
|
||||||
|
@ -1839,7 +1839,31 @@
|
|||||||
},
|
},
|
||||||
"climate": {
|
"climate": {
|
||||||
"air_conditioner": {
|
"air_conditioner": {
|
||||||
"name": "Aire acondicionado"
|
"name": "Aire acondicionado",
|
||||||
|
"state_attributes": {
|
||||||
|
"preset_mode": {
|
||||||
|
"name": "Programas",
|
||||||
|
"state": {
|
||||||
|
"iot_10_heating": "Función de calentamiento de 10° C",
|
||||||
|
"iot_auto": "Automático",
|
||||||
|
"iot_cool": "Frío",
|
||||||
|
"iot_dry": "Deshumidificar",
|
||||||
|
"iot_fan": "Ventilador",
|
||||||
|
"iot_heat": "Calor",
|
||||||
|
"iot_nano_aqua": "Nano Aqua",
|
||||||
|
"iot_purify": "Autopurificar",
|
||||||
|
"iot_self_clean": "Autolimpieza",
|
||||||
|
"iot_self_clean_56": "Limpieza desinfectante 56°",
|
||||||
|
"iot_simple_start": "Iniciar ahora",
|
||||||
|
"iot_uv": "UV",
|
||||||
|
"iot_uv_and_auto": "UV + Automático",
|
||||||
|
"iot_uv_and_cool": "UV + Frío",
|
||||||
|
"iot_uv_and_dry": "UV + Deshumidificador",
|
||||||
|
"iot_uv_and_fan": "UV + Ventilador",
|
||||||
|
"iot_uv_and_heat": "UV + Calor"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"fridge": {
|
"fridge": {
|
||||||
"name": "Frigorífico",
|
"name": "Frigorífico",
|
||||||
|
@ -1839,7 +1839,31 @@
|
|||||||
},
|
},
|
||||||
"climate": {
|
"climate": {
|
||||||
"air_conditioner": {
|
"air_conditioner": {
|
||||||
"name": "Climatiseur"
|
"name": "Climatiseur",
|
||||||
|
"state_attributes": {
|
||||||
|
"preset_mode": {
|
||||||
|
"name": "Programmes",
|
||||||
|
"state": {
|
||||||
|
"iot_10_heating": "Fonction Chauffage 10 °C",
|
||||||
|
"iot_auto": "Automatique",
|
||||||
|
"iot_cool": "Frais",
|
||||||
|
"iot_dry": "Sec",
|
||||||
|
"iot_fan": "Ventilateur",
|
||||||
|
"iot_heat": "Chaleur",
|
||||||
|
"iot_nano_aqua": "Nano Aqua",
|
||||||
|
"iot_purify": "Auto-purification",
|
||||||
|
"iot_self_clean": "Auto-nettoyage",
|
||||||
|
"iot_self_clean_56": "Steri-Clean 56°C",
|
||||||
|
"iot_simple_start": "Démarrez maintenant",
|
||||||
|
"iot_uv": "UV",
|
||||||
|
"iot_uv_and_auto": "UV + Auto",
|
||||||
|
"iot_uv_and_cool": "UV + Froid",
|
||||||
|
"iot_uv_and_dry": "UV + Déshumidificateur",
|
||||||
|
"iot_uv_and_fan": "UV + ventilateur",
|
||||||
|
"iot_uv_and_heat": "UV + Chaleur"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"fridge": {
|
"fridge": {
|
||||||
"name": "Réfrigérateur",
|
"name": "Réfrigérateur",
|
||||||
|
@ -964,7 +964,15 @@
|
|||||||
},
|
},
|
||||||
"climate": {
|
"climate": {
|
||||||
"air_conditioner": {
|
"air_conditioner": {
|
||||||
"name": "Air conditioner"
|
"name": "Air conditioner",
|
||||||
|
"state_attributes": {
|
||||||
|
"preset_mode": {
|
||||||
|
"name": "Programs",
|
||||||
|
"state": {
|
||||||
|
"iot_simple_start": "התחל עכשיו"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"fridge": {
|
"fridge": {
|
||||||
"name": "Fridge",
|
"name": "Fridge",
|
||||||
|
@ -1839,7 +1839,31 @@
|
|||||||
},
|
},
|
||||||
"climate": {
|
"climate": {
|
||||||
"air_conditioner": {
|
"air_conditioner": {
|
||||||
"name": "Klimatizacijski uređaj"
|
"name": "Klimatizacijski uređaj",
|
||||||
|
"state_attributes": {
|
||||||
|
"preset_mode": {
|
||||||
|
"name": "Programi",
|
||||||
|
"state": {
|
||||||
|
"iot_10_heating": "Funkcija grijanja na 10 °C",
|
||||||
|
"iot_auto": "Automatski",
|
||||||
|
"iot_cool": "Hlađenje",
|
||||||
|
"iot_dry": "Sušenje",
|
||||||
|
"iot_fan": "Ventilator",
|
||||||
|
"iot_heat": "Zagrijavanje",
|
||||||
|
"iot_nano_aqua": "Nano Aqua",
|
||||||
|
"iot_purify": "Sampročišćavanje",
|
||||||
|
"iot_self_clean": "Samočišćenje",
|
||||||
|
"iot_self_clean_56": "Sterilno čišćenje 56°C",
|
||||||
|
"iot_simple_start": "Pokreni sada",
|
||||||
|
"iot_uv": "UV",
|
||||||
|
"iot_uv_and_auto": "UV + automatski",
|
||||||
|
"iot_uv_and_cool": "UV + hladno",
|
||||||
|
"iot_uv_and_dry": "UV + odvlaživač",
|
||||||
|
"iot_uv_and_fan": "UV + ventilator",
|
||||||
|
"iot_uv_and_heat": "UV + grijanje"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"fridge": {
|
"fridge": {
|
||||||
"name": "Hladnjak",
|
"name": "Hladnjak",
|
||||||
|
@ -1844,7 +1844,31 @@
|
|||||||
},
|
},
|
||||||
"climate": {
|
"climate": {
|
||||||
"air_conditioner": {
|
"air_conditioner": {
|
||||||
"name": "Condizionatore"
|
"name": "Condizionatore",
|
||||||
|
"state_attributes": {
|
||||||
|
"preset_mode": {
|
||||||
|
"name": "Programmi",
|
||||||
|
"state": {
|
||||||
|
"iot_10_heating": "Funzione 10°C Heating ",
|
||||||
|
"iot_auto": "Auto",
|
||||||
|
"iot_cool": "Freddo",
|
||||||
|
"iot_dry": "Deumidificazione",
|
||||||
|
"iot_fan": "Ventilatore",
|
||||||
|
"iot_heat": "Caldo",
|
||||||
|
"iot_nano_aqua": "Nano Aqua",
|
||||||
|
"iot_purify": "Self purify",
|
||||||
|
"iot_self_clean": "Self clean",
|
||||||
|
"iot_self_clean_56": "Steri-Clean 56°C",
|
||||||
|
"iot_simple_start": "Avvia ora",
|
||||||
|
"iot_uv": "UV",
|
||||||
|
"iot_uv_and_auto": "UV + Auto",
|
||||||
|
"iot_uv_and_cool": "UV + Freddo",
|
||||||
|
"iot_uv_and_dry": "UV + Deumidificatore",
|
||||||
|
"iot_uv_and_fan": "UV + Ventola",
|
||||||
|
"iot_uv_and_heat": "UV + Caldo"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"fridge": {
|
"fridge": {
|
||||||
"name": "Frigorifero",
|
"name": "Frigorifero",
|
||||||
|
@ -1839,7 +1839,31 @@
|
|||||||
},
|
},
|
||||||
"climate": {
|
"climate": {
|
||||||
"air_conditioner": {
|
"air_conditioner": {
|
||||||
"name": "Airconditioner"
|
"name": "Airconditioner",
|
||||||
|
"state_attributes": {
|
||||||
|
"preset_mode": {
|
||||||
|
"name": "Programma's",
|
||||||
|
"state": {
|
||||||
|
"iot_10_heating": "10°C-verwarmingsfunctie",
|
||||||
|
"iot_auto": "Automatisch",
|
||||||
|
"iot_cool": "Koelen",
|
||||||
|
"iot_dry": "Drogen",
|
||||||
|
"iot_fan": "Ventilator",
|
||||||
|
"iot_heat": "Verwarming",
|
||||||
|
"iot_nano_aqua": "Nano Aqua",
|
||||||
|
"iot_purify": "Zelfzuivering",
|
||||||
|
"iot_self_clean": "Zelfreiniging",
|
||||||
|
"iot_self_clean_56": "Sterilisatie reiniging 56°C",
|
||||||
|
"iot_simple_start": "Start nu",
|
||||||
|
"iot_uv": "UV",
|
||||||
|
"iot_uv_and_auto": "UV + Auto",
|
||||||
|
"iot_uv_and_cool": "UV + Koud",
|
||||||
|
"iot_uv_and_dry": "UV + Ontvochtiger",
|
||||||
|
"iot_uv_and_fan": "UV + Hetelucht",
|
||||||
|
"iot_uv_and_heat": "UV + Warmte"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"fridge": {
|
"fridge": {
|
||||||
"name": "Koelkast",
|
"name": "Koelkast",
|
||||||
|
@ -1839,7 +1839,31 @@
|
|||||||
},
|
},
|
||||||
"climate": {
|
"climate": {
|
||||||
"air_conditioner": {
|
"air_conditioner": {
|
||||||
"name": "Klimatyzator"
|
"name": "Klimatyzator",
|
||||||
|
"state_attributes": {
|
||||||
|
"preset_mode": {
|
||||||
|
"name": "Programy",
|
||||||
|
"state": {
|
||||||
|
"iot_10_heating": "Funkcja grzania 10°C",
|
||||||
|
"iot_auto": "Auto",
|
||||||
|
"iot_cool": "Chłodzenie",
|
||||||
|
"iot_dry": "Osuszanie",
|
||||||
|
"iot_fan": "Wentylator",
|
||||||
|
"iot_heat": "Grzanie",
|
||||||
|
"iot_nano_aqua": "Nano Aqua",
|
||||||
|
"iot_purify": "Self Purify",
|
||||||
|
"iot_self_clean": "Self Clean",
|
||||||
|
"iot_self_clean_56": "Steri Clean 56°C",
|
||||||
|
"iot_simple_start": "Uruchom teraz",
|
||||||
|
"iot_uv": "Sterylizacja UVC",
|
||||||
|
"iot_uv_and_auto": "UV + automat",
|
||||||
|
"iot_uv_and_cool": "UV + chłodzenie",
|
||||||
|
"iot_uv_and_dry": "UV + osuszacz powietrza",
|
||||||
|
"iot_uv_and_fan": "UV + wentylator",
|
||||||
|
"iot_uv_and_heat": "UV + podgrzewanie"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"fridge": {
|
"fridge": {
|
||||||
"name": "Lodówka",
|
"name": "Lodówka",
|
||||||
|
@ -1839,7 +1839,31 @@
|
|||||||
},
|
},
|
||||||
"climate": {
|
"climate": {
|
||||||
"air_conditioner": {
|
"air_conditioner": {
|
||||||
"name": "Ar Condicionado"
|
"name": "Ar Condicionado",
|
||||||
|
"state_attributes": {
|
||||||
|
"preset_mode": {
|
||||||
|
"name": "Programas",
|
||||||
|
"state": {
|
||||||
|
"iot_10_heating": "Função de aquecimento de 10 °C",
|
||||||
|
"iot_auto": "Auto",
|
||||||
|
"iot_cool": "Frio",
|
||||||
|
"iot_dry": "Secar",
|
||||||
|
"iot_fan": "Ventilador",
|
||||||
|
"iot_heat": "Calor",
|
||||||
|
"iot_nano_aqua": "Nano Aqua",
|
||||||
|
"iot_purify": "Autopurificação",
|
||||||
|
"iot_self_clean": "Autolimpeza",
|
||||||
|
"iot_self_clean_56": "Steri-Clean 56°C",
|
||||||
|
"iot_simple_start": "Iniciar agora",
|
||||||
|
"iot_uv": "UV",
|
||||||
|
"iot_uv_and_auto": "UV + Auto",
|
||||||
|
"iot_uv_and_cool": "UV + Frio",
|
||||||
|
"iot_uv_and_dry": "UV + Desumidificador",
|
||||||
|
"iot_uv_and_fan": "UV + Ventilação",
|
||||||
|
"iot_uv_and_heat": "UV + Calor"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"fridge": {
|
"fridge": {
|
||||||
"name": "Frigorífico",
|
"name": "Frigorífico",
|
||||||
|
@ -1839,7 +1839,31 @@
|
|||||||
},
|
},
|
||||||
"climate": {
|
"climate": {
|
||||||
"air_conditioner": {
|
"air_conditioner": {
|
||||||
"name": "Aer condiționat"
|
"name": "Aer condiționat",
|
||||||
|
"state_attributes": {
|
||||||
|
"preset_mode": {
|
||||||
|
"name": "Programe",
|
||||||
|
"state": {
|
||||||
|
"iot_10_heating": "Funcția de încălzire la 10 °C",
|
||||||
|
"iot_auto": "Automat",
|
||||||
|
"iot_cool": "Răcire",
|
||||||
|
"iot_dry": "Uscare",
|
||||||
|
"iot_fan": "Ventilare",
|
||||||
|
"iot_heat": "Încălzire",
|
||||||
|
"iot_nano_aqua": "Nano Aqua",
|
||||||
|
"iot_purify": "Auto-purificare",
|
||||||
|
"iot_self_clean": "Autocurățare",
|
||||||
|
"iot_self_clean_56": "Curățare-sterilizare la 56°C",
|
||||||
|
"iot_simple_start": "Începeți acum",
|
||||||
|
"iot_uv": "UV",
|
||||||
|
"iot_uv_and_auto": "UV + automat",
|
||||||
|
"iot_uv_and_cool": "UV + răcire",
|
||||||
|
"iot_uv_and_dry": "UV + dezumidificator",
|
||||||
|
"iot_uv_and_fan": "UV + ventilator",
|
||||||
|
"iot_uv_and_heat": "UV + încălzire"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"fridge": {
|
"fridge": {
|
||||||
"name": "Frigider",
|
"name": "Frigider",
|
||||||
|
@ -1839,7 +1839,31 @@
|
|||||||
},
|
},
|
||||||
"climate": {
|
"climate": {
|
||||||
"air_conditioner": {
|
"air_conditioner": {
|
||||||
"name": "Кондиционер воздуха"
|
"name": "Кондиционер воздуха",
|
||||||
|
"state_attributes": {
|
||||||
|
"preset_mode": {
|
||||||
|
"name": "Программы",
|
||||||
|
"state": {
|
||||||
|
"iot_10_heating": "Функция нагрева до 10°C",
|
||||||
|
"iot_auto": "Авто",
|
||||||
|
"iot_cool": "Охлаждение",
|
||||||
|
"iot_dry": "Сушка",
|
||||||
|
"iot_fan": "Вентилятор",
|
||||||
|
"iot_heat": "Нагрев",
|
||||||
|
"iot_nano_aqua": "Nano Aqua",
|
||||||
|
"iot_purify": "Самоочищение",
|
||||||
|
"iot_self_clean": "Самоочистка",
|
||||||
|
"iot_self_clean_56": "Steri-Clean 56°C",
|
||||||
|
"iot_simple_start": "Пуск сейчас",
|
||||||
|
"iot_uv": "Ультрафиолет",
|
||||||
|
"iot_uv_and_auto": "УФ + Авто",
|
||||||
|
"iot_uv_and_cool": "УФ + Охлаждение",
|
||||||
|
"iot_uv_and_dry": "УФ + Осушитель",
|
||||||
|
"iot_uv_and_fan": "УФ + Вентилятор",
|
||||||
|
"iot_uv_and_heat": "УФ + Нагрев"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"fridge": {
|
"fridge": {
|
||||||
"name": "Холодильник",
|
"name": "Холодильник",
|
||||||
|
@ -1839,7 +1839,31 @@
|
|||||||
},
|
},
|
||||||
"climate": {
|
"climate": {
|
||||||
"air_conditioner": {
|
"air_conditioner": {
|
||||||
"name": "Klimatizácia"
|
"name": "Klimatizácia",
|
||||||
|
"state_attributes": {
|
||||||
|
"preset_mode": {
|
||||||
|
"name": "Programy",
|
||||||
|
"state": {
|
||||||
|
"iot_10_heating": "Funkcia vykurovania na 10 °C",
|
||||||
|
"iot_auto": "Automatika",
|
||||||
|
"iot_cool": "Chladiť",
|
||||||
|
"iot_dry": "Sušiť",
|
||||||
|
"iot_fan": "Ventilátor",
|
||||||
|
"iot_heat": "Ohrev",
|
||||||
|
"iot_nano_aqua": "Nano Aqua",
|
||||||
|
"iot_purify": "Samoprečisťovanie",
|
||||||
|
"iot_self_clean": "Samočistenie",
|
||||||
|
"iot_self_clean_56": "Sterilné čistenie 56°C",
|
||||||
|
"iot_simple_start": "Spustiť teraz",
|
||||||
|
"iot_uv": "UV",
|
||||||
|
"iot_uv_and_auto": "UV + Auto",
|
||||||
|
"iot_uv_and_cool": "UV + Studené",
|
||||||
|
"iot_uv_and_dry": "UV + Odvlhčovač",
|
||||||
|
"iot_uv_and_fan": "UV + Ventilátor",
|
||||||
|
"iot_uv_and_heat": "UV + Ohrev"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"fridge": {
|
"fridge": {
|
||||||
"name": "Chladnička",
|
"name": "Chladnička",
|
||||||
|
@ -1839,7 +1839,31 @@
|
|||||||
},
|
},
|
||||||
"climate": {
|
"climate": {
|
||||||
"air_conditioner": {
|
"air_conditioner": {
|
||||||
"name": "Klimatska naprava"
|
"name": "Klimatska naprava",
|
||||||
|
"state_attributes": {
|
||||||
|
"preset_mode": {
|
||||||
|
"name": "Programi",
|
||||||
|
"state": {
|
||||||
|
"iot_10_heating": "Funkcija ogrevanja pri 10 °C",
|
||||||
|
"iot_auto": "Samodejno",
|
||||||
|
"iot_cool": "Hlajenje",
|
||||||
|
"iot_dry": "Sušenje",
|
||||||
|
"iot_fan": "Ventilator",
|
||||||
|
"iot_heat": "Segrevanje",
|
||||||
|
"iot_nano_aqua": "Nano Aqua",
|
||||||
|
"iot_purify": "Samoočiščevanje",
|
||||||
|
"iot_self_clean": "Samodejno čiščenje",
|
||||||
|
"iot_self_clean_56": "Sterilno čiščenje 56°C",
|
||||||
|
"iot_simple_start": "Zaženi zdaj",
|
||||||
|
"iot_uv": "UV",
|
||||||
|
"iot_uv_and_auto": "UV + samodejno",
|
||||||
|
"iot_uv_and_cool": "UV + hlajenje",
|
||||||
|
"iot_uv_and_dry": "UV + razvlaževanje",
|
||||||
|
"iot_uv_and_fan": "UV + ventilator",
|
||||||
|
"iot_uv_and_heat": "UV + gretje"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"fridge": {
|
"fridge": {
|
||||||
"name": "Hladilnik",
|
"name": "Hladilnik",
|
||||||
|
@ -1839,7 +1839,31 @@
|
|||||||
},
|
},
|
||||||
"climate": {
|
"climate": {
|
||||||
"air_conditioner": {
|
"air_conditioner": {
|
||||||
"name": "Klima uređaj"
|
"name": "Klima uređaj",
|
||||||
|
"state_attributes": {
|
||||||
|
"preset_mode": {
|
||||||
|
"name": "Programi",
|
||||||
|
"state": {
|
||||||
|
"iot_10_heating": "Funkcija grejanja – 10° C",
|
||||||
|
"iot_auto": "Automatski",
|
||||||
|
"iot_cool": "Hlađenje",
|
||||||
|
"iot_dry": "Sušenje",
|
||||||
|
"iot_fan": "Ventilator",
|
||||||
|
"iot_heat": "Toplota",
|
||||||
|
"iot_nano_aqua": "Nano Aqua",
|
||||||
|
"iot_purify": "Samopročišćavanje",
|
||||||
|
"iot_self_clean": "Samočišćenje",
|
||||||
|
"iot_self_clean_56": "Sterilno čišćenje 56°C",
|
||||||
|
"iot_simple_start": "Pokrenuti sada",
|
||||||
|
"iot_uv": "UV",
|
||||||
|
"iot_uv_and_auto": "UV + automatsko",
|
||||||
|
"iot_uv_and_cool": "UV+ hladno",
|
||||||
|
"iot_uv_and_dry": "UV + odvlaživač",
|
||||||
|
"iot_uv_and_fan": "UV + ventilator",
|
||||||
|
"iot_uv_and_heat": "UV + toplota"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"fridge": {
|
"fridge": {
|
||||||
"name": "Frižider",
|
"name": "Frižider",
|
||||||
|
@ -1839,7 +1839,31 @@
|
|||||||
},
|
},
|
||||||
"climate": {
|
"climate": {
|
||||||
"air_conditioner": {
|
"air_conditioner": {
|
||||||
"name": "Klima"
|
"name": "Klima",
|
||||||
|
"state_attributes": {
|
||||||
|
"preset_mode": {
|
||||||
|
"name": "Programlar",
|
||||||
|
"state": {
|
||||||
|
"iot_10_heating": "10°C Isıtma fonksiyonu",
|
||||||
|
"iot_auto": "Otomatik",
|
||||||
|
"iot_cool": "Soğuk",
|
||||||
|
"iot_dry": "Kuru",
|
||||||
|
"iot_fan": "Fan",
|
||||||
|
"iot_heat": "Isı",
|
||||||
|
"iot_nano_aqua": "Nano Aqua",
|
||||||
|
"iot_purify": "Kendi kendini arındırma",
|
||||||
|
"iot_self_clean": "Kendi kendini temizleme",
|
||||||
|
"iot_self_clean_56": "Steril Temizleme 56°C",
|
||||||
|
"iot_simple_start": "Şimdi başlat",
|
||||||
|
"iot_uv": "UV",
|
||||||
|
"iot_uv_and_auto": "UV + Otomatik",
|
||||||
|
"iot_uv_and_cool": "UV + Soğuk",
|
||||||
|
"iot_uv_and_dry": "UV + Nem giderici",
|
||||||
|
"iot_uv_and_fan": "UV + Fan",
|
||||||
|
"iot_uv_and_heat": "UV + Isıtma"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"fridge": {
|
"fridge": {
|
||||||
"name": "Buzdolabı",
|
"name": "Buzdolabı",
|
||||||
|
@ -1839,7 +1839,31 @@
|
|||||||
},
|
},
|
||||||
"climate": {
|
"climate": {
|
||||||
"air_conditioner": {
|
"air_conditioner": {
|
||||||
"name": "空调"
|
"name": "空调",
|
||||||
|
"state_attributes": {
|
||||||
|
"preset_mode": {
|
||||||
|
"name": "程序",
|
||||||
|
"state": {
|
||||||
|
"iot_10_heating": "10°C 加热功能",
|
||||||
|
"iot_auto": "自动",
|
||||||
|
"iot_cool": "冷却",
|
||||||
|
"iot_dry": "烘干",
|
||||||
|
"iot_fan": "风扇",
|
||||||
|
"iot_heat": "加热",
|
||||||
|
"iot_nano_aqua": "Nano Aqua",
|
||||||
|
"iot_purify": "自净",
|
||||||
|
"iot_self_clean": "自洁",
|
||||||
|
"iot_self_clean_56": "无菌清洁 56°C",
|
||||||
|
"iot_simple_start": "立即启动",
|
||||||
|
"iot_uv": "UV",
|
||||||
|
"iot_uv_and_auto": "UV + 自动",
|
||||||
|
"iot_uv_and_cool": "UV + 制冷",
|
||||||
|
"iot_uv_and_dry": "UV + 减湿器",
|
||||||
|
"iot_uv_and_fan": "UV + 风扇",
|
||||||
|
"iot_uv_and_heat": "UV + 加热"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"fridge": {
|
"fridge": {
|
||||||
"name": "冰箱",
|
"name": "冰箱",
|
||||||
|
@ -159,6 +159,12 @@ CLIMATE = {
|
|||||||
"state": "PROGRAMS.OV",
|
"state": "PROGRAMS.OV",
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"air_conditioner": {
|
||||||
|
"preset_mode": {
|
||||||
|
"name": "OV.TABS.PROGRAMS_TITLE",
|
||||||
|
"state": "PROGRAMS.AC",
|
||||||
|
}
|
||||||
|
},
|
||||||
"wine": {
|
"wine": {
|
||||||
"preset_mode": {
|
"preset_mode": {
|
||||||
"name": "WC.NAME",
|
"name": "WC.NAME",
|
||||||
|
Loading…
Reference in New Issue
Block a user