MTS200 , & HVAC mode in Auto #275
Replies: 4 comments 3 replies
-
Hello @john-wolff59,
If you want to explicitly set one of the mts200 working modes it would be better to use the Beside this detailed explanation of the behavior, I've checked the meross_lan implementation and I see a problem (like the one you're exposing) might arise when meross_lan 'thinks' the mts200 is already on when issuing the You could 'bypass' the bug by explicitly calling 'climate.turn_on' in your automations if that fixes the issue I would happily patch the code so to always send the command |
Beta Was this translation helpful? Give feedback.
-
@krahabb, service: climate.set_hvac_mode this does not override the MTS200 in 'schedule' mode. |
Beta Was this translation helpful? Give feedback.
-
@john-wolff59, In order to proceed to debugging I would need a 'diagnostic trace' captured with the following conditions:
Also, in order to see if the preset modes mappings are correct you could manually operate the device from its panel (or the Meross app) and see if the correct preset/hvac modes are reported in HA. This should assure us meross_lan is correctly understanding the modes of operation |
Beta Was this translation helpful? Give feedback.
-
hello @krahabb I tried to do the default tracing. And i write your what i have done :
i attach the default tracing |
Beta Was this translation helpful? Give feedback.
-
Hello,
I have an MTS200 thermostat.
Under Home assistant, I created an automation to switch the heating to 24 degrees depending on the conditions.
so I used:
service: climate.set_temperature
data:
temperature: 24
target:
device_id: xxxxxxxxxxxx
when I run manually or depending on the conditions, the set point temperature goes well at 24 degrees. it's works !
on the other hand, I would like to succeed in switching this thermostat back to automatic (depending on the programming of the thermostat) on other conditions.
But I can't do it, the following command is executed, but no way to switch to auto mode:
service: climate.set_hvac_mode
data:
hvac_mode: auto
target:
device_id: xxxxxxxxxxxx
in OFF mode, it works.
Does anyone have any idea to figure out what is wrong?
thanks
Beta Was this translation helpful? Give feedback.
All reactions