Witam.
Szukam termostatu który bez problemu zintegruje się z bramka. Taki który ma własny harmonogram który w razie problemu łączności z bramka będzie funkcjonował samodzielnie.
Cena do 220 PLN. Bez różnicy czy wifi czy zigbee.
Ma mieć własny harmonogram i być pewny. Bramka ma służyć jako podgląd i możliwości sterowania.
Uzywam moesa, ustawiłem go bez bramki, potem bramka cc2531 i tak padła, a głowica pracowała dalej bez problemu.
Podaj model termostatu.
Mi potrzebny taki pokojowy do puszki
Cze @lyczko
Ja kupiłem termostat TR042 Tuya. Ale po dodaniu do bramki podaje złe temperatury. Na sterowniku jest oki i na programie na telefonie jest oki. Na bramce źle. Dodałem integrację ale nie wiem czy nie muszę czegoś dopisać w plikach.
Po dodaniu jest tak:
Jeżeli może wiesz co mam dodać w plikach to pomożesz ?
Niestety nie pomogę bo nie wiem.
A sam szukam jakiegoś termostatu z którym nie ma problemu.
Na liście wspieranych przez zigbee2mqtt jest taki:
Jakże podobny tu:
To gdzie mam coś zmienić lub dodać…
Ich weiß nichts
Dzięki @Cezary.K
Czytam Twoją podpowiedź ale nie kumam.
Blad integracji, wystaw buga na integracje.
Nie wiem, bo nie napisałeś nic o tym jak zintegrowałeś i co zrobiłeś.
Masz na myśli wyświetlacz termostatu?
Masz na myśli aplikacje do chińskiej chmury?
Co jest źle?
Jaką integrację?
Czyli jak, za ciepło?
P.S.
(“Ich weiß nichts” - C.K. Dezerterzy - taki film z 1986r)
Może tak, wiem z jakiego filmu jest ten cytat…
A teraz odnośnie moich działań:
- Mój sterownik to TR042 Tuya
- Dodałem go do bramki przez integrację Tuya
- Tak na sterowniku (wyświetlaczu) i aplikacji do chińskiej chmury wskazania teperatury są dobre i
mogę tu zmieniać ustawienia - Na bramce są złe wskazania tepmeratury aktualnej
- Mogę sterować z poziomu bramki sterownikiem, ale po ustawieniu żądanej tepmeratury na
sterowniku dokonuję się zmiana ( wyświetlacz termostatu ma dobre wskazania) a na bramce
termostat zmienia ustawienia
Tak wygląda zaraz po ustawieniu:
Po chwili jest tak:
Prawdopodobnie nie jesteś sam z tym problemem:
Podpinam się pod pytanie, jaki model?
Nie odpisałem, bo dopiero w następnym poście napisałeś, że potrzebujesz pokojowy do puszki, a ja miałem na myśli głowicę termostatyczną
Czy to ten model Moes?
U mnie piszę TR042 Tuya
A ta Tuya chodzi po MQTT? Zigbee czy Wi-Fi?
Wolał bym coś bez chmury.
Niestety ten termostat TR042 Tuya chodzi po wifi i chmura.
Próbuje walczyć z tym tematem termostatu tuya.
Ale na samym początku jest problem, bo po utworzeniu katalogu climate w custom_components/climate/ i wgraniu plików, po odpowiednich zmianach na bramce termostat staje się niedostępny. A jak wgram oryginlny plik to termostat jest dostepny ale jest złe wskazanie temperatury aktualnej.
Jeżeli chodzi o pliki i zmiany to opieram się na tym temacie podesłanym przez @Cezary.K. Plik oryginalny wygląda tak:
“”“Support for the Tuya climate devices.”""
from homeassistant.components.climate import (
DOMAIN as SENSOR_DOMAIN,
ENTITY_ID_FORMAT,
ClimateEntity,
)
from homeassistant.components.climate.const import (
FAN_HIGH,
FAN_LOW,
FAN_MEDIUM,
HVAC_MODE_AUTO,
HVAC_MODE_COOL,
HVAC_MODE_FAN_ONLY,
HVAC_MODE_HEAT,
HVAC_MODE_OFF,
SUPPORT_FAN_MODE,
SUPPORT_TARGET_TEMPERATURE,
)
from homeassistant.const import (
ATTR_TEMPERATURE,
CONF_PLATFORM,
PRECISION_WHOLE,
TEMP_CELSIUS,
TEMP_FAHRENHEIT,
)
from homeassistant.helpers.dispatcher import async_dispatcher_connect
from . import TuyaDevice
from .const import DOMAIN, TUYA_DATA, TUYA_DISCOVERY_NEW
DEVICE_TYPE = “climate”
PARALLEL_UPDATES = 0
HA_STATE_TO_TUYA = {
HVAC_MODE_AUTO: “auto”,
HVAC_MODE_COOL: “cold”,
HVAC_MODE_FAN_ONLY: “wind”,
HVAC_MODE_HEAT: “hot”,
}
TUYA_STATE_TO_HA = {value: key for key, value in HA_STATE_TO_TUYA.items()}
FAN_MODES = {FAN_LOW, FAN_MEDIUM, FAN_HIGH}
async def async_setup_entry(hass, config_entry, async_add_entities):
“”“Set up tuya sensors dynamically through tuya discovery.”""
platform = config_entry.data[CONF_PLATFORM]
async def async_discover_sensor(dev_ids):
"""Discover and add a discovered tuya sensor."""
if not dev_ids:
return
entities = await hass.async_add_executor_job(
_setup_entities,
hass,
dev_ids,
platform,
)
async_add_entities(entities)
async_dispatcher_connect(
hass, TUYA_DISCOVERY_NEW.format(SENSOR_DOMAIN), async_discover_sensor
)
devices_ids = hass.data[DOMAIN]["pending"].pop(SENSOR_DOMAIN)
await async_discover_sensor(devices_ids)
def _setup_entities(hass, dev_ids, platform):
“”“Set up Tuya Climate device.”""
tuya = hass.data[DOMAIN][TUYA_DATA]
entities = []
for dev_id in dev_ids:
device = tuya.get_device_by_id(dev_id)
if device is None:
continue
entities.append(TuyaClimateEntity(device, platform))
return entities
class TuyaClimateEntity(TuyaDevice, ClimateEntity):
“”“Tuya climate devices,include air conditioner,heater.”""
def __init__(self, tuya, platform):
"""Init climate device."""
super().__init__(tuya, platform)
self.entity_id = ENTITY_ID_FORMAT.format(tuya.object_id())
self.operations = [HVAC_MODE_OFF]
async def async_added_to_hass(self):
"""Create operation list when add to hass."""
await super().async_added_to_hass()
modes = self._tuya.operation_list()
if modes is None:
return
for mode in modes:
if mode in TUYA_STATE_TO_HA:
self.operations.append(TUYA_STATE_TO_HA[mode])
@property
def precision(self):
"""Return the precision of the system."""
return PRECISION_WHOLE
@property
def temperature_unit(self):
"""Return the unit of measurement used by the platform."""
unit = self._tuya.temperature_unit()
if unit == "FAHRENHEIT":
return TEMP_FAHRENHEIT
return TEMP_CELSIUS
@property
def hvac_mode(self):
"""Return current operation ie. heat, cool, idle."""
if not self._tuya.state():
return HVAC_MODE_OFF
mode = self._tuya.current_operation()
if mode is None:
return None
return TUYA_STATE_TO_HA.get(mode)
@property
def hvac_modes(self):
"""Return the list of available operation modes."""
return self.operations
@property
def current_temperature(self):
"""Return the current temperature."""
return self._tuya.current_temperature()
@property
def target_temperature(self):
"""Return the temperature we try to reach."""
return self._tuya.target_temperature()
@property
def target_temperature_step(self):
"""Return the supported step of target temperature."""
return self._tuya.target_temperature_step()
@property
def fan_mode(self):
"""Return the fan setting."""
return self._tuya.current_fan_mode()
@property
def fan_modes(self):
"""Return the list of available fan modes."""
return self._tuya.fan_list()
def set_temperature(self, **kwargs):
"""Set new target temperature."""
if ATTR_TEMPERATURE in kwargs:
self._tuya.set_temperature(kwargs[ATTR_TEMPERATURE])
def set_fan_mode(self, fan_mode):
"""Set new target fan mode."""
self._tuya.set_fan_mode(fan_mode)
def set_hvac_mode(self, hvac_mode):
"""Set new target operation mode."""
if hvac_mode == HVAC_MODE_OFF:
self._tuya.turn_off()
if not self._tuya.state():
self._tuya.turn_on()
self._tuya.set_operation_mode(HA_STATE_TO_TUYA.get(hvac_mode))
@property
def supported_features(self):
"""Return the list of supported features."""
supports = 0
if self._tuya.support_target_temperature():
supports = supports | SUPPORT_TARGET_TEMPERATURE
if self._tuya.support_wind_speed():
supports = supports | SUPPORT_FAN_MODE
return supports
@property
def min_temp(self):
"""Return the minimum temperature."""
return self._tuya.min_temp()
@property
def max_temp(self):
"""Return the maximum temperature."""
return self._tuya.max_temp()
A po proponowanych zmianach tak:
“”“Support for the Tuya climate devices.”""
from homeassistant.components.climate import (
DOMAIN as SENSOR_DOMAIN,
ENTITY_ID_FORMAT,
ClimateEntity,
)
from homeassistant.components.climate.const import (
FAN_HIGH,
FAN_LOW,
FAN_MEDIUM,
HVAC_MODE_AUTO,
HVAC_MODE_COOL,
HVAC_MODE_FAN_ONLY,
HVAC_MODE_HEAT,
HVAC_MODE_OFF,
SUPPORT_FAN_MODE,
SUPPORT_TARGET_TEMPERATURE,
)
from homeassistant.const import (
ATTR_TEMPERATURE,
CONF_PLATFORM,
PRECISION_WHOLE,
TEMP_CELSIUS,
TEMP_FAHRENHEIT,
)
from homeassistant.helpers.dispatcher import async_dispatcher_connect
from . import TuyaDevice
from .const import DOMAIN, TUYA_DATA, TUYA_DISCOVERY_NEW
DEVICE_TYPE = “climate”
PARALLEL_UPDATES = 0
HA_STATE_TO_TUYA = {
HVAC_MODE_AUTO: “auto”,
HVAC_MODE_COOL: “cold”,
HVAC_MODE_FAN_ONLY: “wind”,
HVAC_MODE_HEAT: “hot”,
}
TUYA_STATE_TO_HA = {value: key for key, value in HA_STATE_TO_TUYA.items()}
FAN_MODES = {FAN_LOW, FAN_MEDIUM, FAN_HIGH}
async def async_setup_entry(hass, config_entry, async_add_entities):
“”“Set up tuya sensors dynamically through tuya discovery.”""
platform = config_entry.data[CONF_PLATFORM]
async def async_discover_sensor(dev_ids):
"""Discover and add a discovered tuya sensor."""
if not dev_ids:
return
entities = await hass.async_add_executor_job(
_setup_entities,
hass,
dev_ids,
platform,
)
async_add_entities(entities)
async_dispatcher_connect(
hass, TUYA_DISCOVERY_NEW.format(SENSOR_DOMAIN), async_discover_sensor
)
devices_ids = hass.data[DOMAIN]["pending"].pop(SENSOR_DOMAIN)
await async_discover_sensor(devices_ids)
def _setup_entities(hass, dev_ids, platform):
“”“Set up Tuya Climate device.”""
tuya = hass.data[DOMAIN][TUYA_DATA]
entities = []
for dev_id in dev_ids:
device = tuya.get_device_by_id(dev_id)
if device is None:
continue
entities.append(TuyaClimateEntity(device, platform))
return entities
class TuyaClimateEntity(TuyaDevice, ClimateEntity):
“”“Tuya climate devices,include air conditioner,heater.”""
def __init__(self, tuya, platform):
"""Init climate device."""
super().__init__(tuya, platform)
self.entity_id = ENTITY_ID_FORMAT.format(tuya.object_id())
self.operations = [HVAC_MODE_OFF]
async def async_added_to_hass(self):
"""Create operation list when add to hass."""
await super().async_added_to_hass()
modes = self._tuya.operation_list()
if modes is None:
return
for mode in modes:
if mode in TUYA_STATE_TO_HA:
self.operations.append(TUYA_STATE_TO_HA[mode])
@property
def precision(self):
"""Return the precision of the system."""
return PRECISION_WHOLE
@property
def temperature_unit(self):
"""Return the unit of measurement used by the platform."""
unit = self._tuya.temperature_unit()
if unit == "FAHRENHEIT":
return TEMP_FAHRENHEIT
return TEMP_CELSIUS
@property
def hvac_mode(self):
"""Return current operation ie. heat, cool, idle."""
if not self._tuya.state():
return HVAC_MODE_OFF
mode = self._tuya.current_operation()
if mode is None:
return None
return TUYA_STATE_TO_HA.get(mode)
@property
def hvac_modes(self):
"""Return the list of available operation modes."""
return self.operations
@property
def current_temperature(self): tu są zmiany
temp = float(self.tuya.current_temperature())/10
return temp
@property
def target_temperature(self):
“”“Return the temperature we try to reach.”"" tu są zmiany
temp = float(self.tuya.target_temperature())/10
return temp
@property
def target_temperature_step(self):
"""Return the supported step of target temperature."""
return self._tuya.target_temperature_step()
@property
def fan_mode(self):
"""Return the fan setting."""
return self._tuya.current_fan_mode()
@property
def fan_modes(self):
"""Return the list of available fan modes."""
return self._tuya.fan_list()
def set_temperature(self, **kwargs):
"""Set new target temperature."""
if ATTR_TEMPERATURE in kwargs:
self._tuya.set_temperature(kwargs[ATTR_TEMPERATURE])
def set_fan_mode(self, fan_mode):
"""Set new target fan mode."""
self._tuya.set_fan_mode(fan_mode)
def set_hvac_mode(self, hvac_mode):
"""Set new target operation mode."""
if hvac_mode == HVAC_MODE_OFF:
self._tuya.turn_off()
if not self._tuya.state():
self._tuya.turn_on()
self._tuya.set_operation_mode(HA_STATE_TO_TUYA.get(hvac_mode))
@property
def supported_features(self):
"""Return the list of supported features."""
supports = 0
if self._tuya.support_target_temperature():
supports = supports | SUPPORT_TARGET_TEMPERATURE
if self._tuya.support_wind_speed():
supports = supports | SUPPORT_FAN_MODE
return supports
@property
def min_temp(self):
"""Return the minimum temperature."""
return self._tuya.min_temp()
@property
def max_temp(self):
"""Return the maximum temperature."""
return self._tuya.max_temp()
Chciałbym, żeby oczywiście po dobrym wskazaniu temperatury bieżącej dało się ustawiać temperaturę co 0.5 stopnia i oczywiście histereza możliwa do ustawienia.
Nie wiem co robię źle. Czy wogóle jest możliwa taka integracja, czy to może błąd integracji.