Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Using a Honeywell T6 for the room temperature #66

Open
MarceldeJager opened this issue Oct 24, 2023 · 4 comments
Open

Using a Honeywell T6 for the room temperature #66

MarceldeJager opened this issue Oct 24, 2023 · 4 comments

Comments

@MarceldeJager
Copy link

Hi There,

I am bit new in this all and when I asked a stupid question I'm sorry :-)

I have two AC's. One in the livingroom and one in the bedroom. Both have the wifi controller with MHI-AC-Ctrl-ESPHome software on it and they work fine (after 2 weeks of messing around).
Setting the temp is aways a guess because depending on heating, or cooling, the offset is different.
In the living room I have the Honeywell T6 that is attached the the normal heater (is hardly used) and that always has the right temp.
Is it possible to use the Honeywel as the room temp by the airco and how do I do that?

Thanks,

Marcel

@ervee
Copy link

ervee commented Oct 24, 2023

Do you already have the Honeywell as a temperature sensor in Home Assistant?
If so you can feed this sensor into the AC as external temperature via the service set_api_room_temperature. You need to call this regularly within the timeout specified in the ESPHome yaml for your AC.

See #41 for inspiration.

@jeroenleenarts
Copy link

Here's an automation I am running every minute to push the temperature reading of a Tado device to the AC unit.

alias: "Auto: Room Temperature to AC"
description: Forward Room Temperatures to AC
triggers:
  - seconds: "0"
    trigger: time_pattern
conditions: []
actions:
  - data:
      value: "{{ states('sensor.woonkamer_temperatuur') }}"
    action: esphome.mhiwoonkamer_set_api_room_temperature
mode: single

If you have a reliable temp reading available in Home Assistant this works quite nice.

One thing I noticed is that the temperature reading is interpreted as being 2 degrees under target. So when I set the AC to 20 degrees, it looks like it is aiming for a reported room temperature of about 22 degrees. I do notice that the AC is running with less pauses since I switched to using a room thermometer instead of the built in one.

Oh and "woonkamer" is Dutch for "Livingroom".

@arpiecodes
Copy link
Contributor

One thing I noticed is that the temperature reading is interpreted as being 2 degrees under target. So when I set the AC to 20 degrees, it looks like it is aiming for a reported room temperature of about 22 degrees. I do notice that the AC is running with less pauses since I switched to using a room thermometer instead of the built in one.

This is expected behaviour. See #65 (comment) on how to change this. It's in the manual. If you follow those steps mentioned there it will no longer overshoot.

@ervee
Copy link

ervee commented Oct 24, 2024

And/or you can offset the temperature you push to the A/C.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants