Skip to content

Use ESP8266/ESP32 hardware to control Mitsubishi heat pumps via MQTT

License

Notifications You must be signed in to change notification settings

floatplane/MitsuQTT

Repository files navigation

MitsuQTT

pronounced Mitsu-cute

.github/workflows/build.yml .github/workflows/test.yml .github/workflows/static_analysis.yml .github/workflows/clangformat.yml BuyMeACoffee

MitsuQTT is an embedded application that runs on ESP8266/ESP32 hardware and provides the following functionality:

  • Control of an attached Mitsubishi heat pump via the heat pump's CN105 connector
  • An MQTT interface that can both publish the current heat pump state and accept commands to change it
  • Home Assistant autodiscovery - the application can show up in HA as a climate entity
  • An embedded webserver for configuration and communication

MitsuQTT is a drop-in replacement for the mitsubishi2MQTT project, with some notable improvements:

  • Automatic dark/light mode support in the UI
  • Web performance greatly improved
  • More rigorous testing - unit tests, automated testing via clang-tidy and cppcheck
  • Safe mode, for air handlers that rely on external temperature sensors to work correctly
  • Additional monitoring support

Screenshots

homepage control status page light mode
home page control status light mode

Setup

Hardware

You're going to need to get some hardware connected to your heat pump. Here are some links I found helpful:

Initial software setup

This project uses PlatformIO to build. Recommmended: install the PlatformIO IDE through VS Code. From VS Code, it should be one button press to build and deploy to your selected hardware:

build.mov

You should only have to build and deploy the code once onto your hardware - subsequent updates can be done over-the-air (OTA).

Configuration

If all goes well, the WiFi hardware will create its own ad-hoc network that you can join. Look for an access point of the form HVAC_XXXX and connect to it. Then visit http://192.168.1.1 or http://setup to get to the initial configuration screen. Here, you'll enter a name for your hardware (use a hostname - no spaces!) as well as login information for the wireless network you want the hardware to connect to.

After saving and restarting, you'll be ready to configure your hardware through the Setup screen - in particular, you'll want to set up an MQTT connection to use this with Home Assistant, Node-RED, or any other automation technology.

OTA updates

You can download new versions from the Artifacts section here. Pick the download for your hardware type, unzip it on your desktop, and use the "Firmware Update" page to upload the BIN file to your hardware.


Monitoring

MitsuQTT exposes a /metrics.json endpoint that can be used to directly interrogate the state of the hardware. You can connect this to a tool like Uptime Kuma to watch for changes and publish alerts:

image

Safe mode

Safe mode is for air handlers: units that are designed to be replacements for legacy furnaces. Air handlers typically rely on getting a current temperature reading from a remote thermostat, since the ambient temperature they read in a basement can be wildly different from the temperature in the living space. If a connection failure prevents MitsuQTT from receiving remote temperature updates, the default behavior is to revert to the internal temperature sensor - fine for wall-mounted indoor units, but disastrous for air handlers that believe that the room temperature has dropped by 10 degrees, and start heating to compensate.

MitsuQTT offers a "safe mode" option, which will shut the air handler down when remote temperature signals are not being received, and turn it back on when they resume. Safe mode activation can be observed through /metrics.json, and thus turned into an actionable alert:

$ curl http://main_floor_heatpump/metrics.json
{
  "hostname": "main_floor_heatpump",
  "version": "2024.03.17",
  "git_hash": "3daa0ce",
  "status": {
    // If `true`, then safe mode has been activated and the heat pump
    // will ignore all MQTT requests to turn on
    "safeModeLockout": false
  },
  // ...
}

Node-RED control

You can post messages to MQTT to control the heat pump:

  • topic/power/set OFF
  • topic/mode/set AUTO HEAT COOL DRY FAN_ONLY OFF ON
  • topic/temp/set 16-31
  • topic/remote_temp/set also called "room_temp", the implementation defined in "HeatPump" seems not work in some models
  • topic/fan/set 1-4 AUTO QUIET
  • topic/vane/set 1-5 SWING AUTO
  • topic/wideVane/set << < | > >>
  • topic/settings
  • topic/state
  • topic/debug/packets
  • topic/debug/packets/set on off
  • topic/debug/logs
  • topic/debug/logs/set on off
  • topic/custom/send as example "fc 42 01 30 10 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7b " see https://github.com/SwiCago/HeatPump/blob/master/src/HeatPump.h
  • topic/system/set reboot

Grafana dashboard

note: this was copied from Mitsubishi2MQTT, but is not well tested. file an issue if you have problems!

To use Grafana you need to have Prometheus and Grafana (v10 or newer) installed. Config for Prometheus:

    static_configs:
        - targets:
            - IP-TO-MitsuQTT

Then add Prometheus as a datasource in Grafana Grafana -> Connections -> Add new connection -> Prometheus -> Prometheus server URL: PROMETHEUS-IP:PORT

Then you can import the dashboard in Grafana -> Dashboards -> New -> Import and upload the file https://github.com/floatplane/MitsuQTT/blob/master/misc/prometheus.json

Credits

MitsuQTT started as a fork of gysmo38/mitsubishi2MQTT, though it's evolved quite a bit since then.

Heat pump control is via SwiCago/HeatPump.

Support

I hope this is useful to you! If it is, then maybe you'd like to buy me a coffee? 😊

Buy Me A Coffee

About

Use ESP8266/ESP32 hardware to control Mitsubishi heat pumps via MQTT

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published