# esphome-mitsubishiheatpump Wirelessly control your Mitsubishi Comfort HVAC equipment with an ESP8266 or ESP32 using the [ESPHome](https://esphome.io) framework. ## Features * Instant feedback of command changes via RF Remote to HomeAssistant or MQTT. * Direct control without the remote. * Uses the [SwiCago/HeatPump](https://github.com/SwiCago/HeatPump) Arduino libary to talk to the unit directly via the internal `CN105` connector. ## Requirements * https://github.com/SwiCago/HeatPump * ESPHome 1.19.1 or greater ## Supported Microcontrollers This library should work on most ESP8266 or ESP32 platforms. It has been tested with the following MCUs: * Generic ESP-01S board (ESP8266) * WeMos D1 Mini (ESP8266) * Generic ESP32 Dev Kit (ESP32) ## Supported Mitsubishi Climate Units The underlying HeatPump library works with a number of Mitsubishi HVAC units. Basically, if the unit has a `CN105` header on the main board, it should work with this library. The [HeatPump wiki](https://github.com/SwiCago/HeatPump/wiki/Supported-models) has a more exhaustive list. The same `CN105` connector is used by the Mitsubishi KumoCloud remotes, which have a [compatibility list](https://www.mitsubishicomfort.com/kumocloud/compatibility) available. The whole integration with this libary and the underlying HeatPump has been tested by the author on the following units: * `MSZ-GL06NA` * `MFZ-KA09NA` ## Usage ### Step 1: Build a control circuit. Build a control circuit with your MCU as detailed in the [SwiCago/HeatPump README](https://github.com/SwiCago/HeatPump/blob/master/README.md#demo-circuit). You can use either an ESP8266 or an ESP32 for this. Note: several users have reported that they've been able to get away with not using the pull-up resistors, and just [directly connecting a Wemos D1 mini to the control board](https://github.com/SwiCago/HeatPump/issues/13#issuecomment-457897457) via CN105. ### Step 2: Use ESPHome 1.18.0 or higher The code in this repository makes use of a number of features in the 1.18.0 version of ESPHome, including various Fan modes and [external components](https://esphome.io/components/external_components.html). ### Step 3: Add this repository as an external component Add this repository to your ESPHome config: ```yaml external_components: - source: github://geoffdavis/esphome-mitsubishiheatpump ``` #### Step 3a: Upgrading from 1.x releases Version 2.0 and greater of this libary use the ESPHome `external_components` feature, which is a huge step forward in terms of usability. In order to make things compile correctly, you will need to: 1. Remove the `libraries` section that imports `https://github.com/SwiCago/HeatPump`, as this is handled by the `external_component` section of manifest. 2. Remove the `includes` section that imports `src/esphome-mitsubishiheatpump` 3. Delete the old checkout of this repository under `src/esphome-mitsubishiheatpump`. 4. Clean your old ESPHome build directories out (3-dot menu, "Clean Build Files") 5. You may also have to delete the _esphomenodename_ directory that corresponds with your _esphomenodename.yaml_ configuration file completely. This directory may exist in your base config directory, or in `config/.esphome/build`. Testing with ESPHome 0.18.x showed this to be necessary to get the cached copy of src/esphome-mitsubishiheatpump to go away entirely, as the "Clean Build Files" isn't as thorough as one would like. *Note:* Failure to delete the old source directory and remove the `includes` and `libraries` lines will likely result in compilation errors complaining about duplicate declarations of `MitsubishiHeatPump::traits()`. ##### Example error ``` Linking /data/bedroom_east_heatpump/.pioenvs/bedroom_east_heatpump/firmware.elf /root/.platformio/packages/toolchain-xtensa/bin/../lib/gcc/xtensa-lx106-elf/4.8.2/../../../../xtensa-lx106-elf/bin/ld: /data/bedroom_east_heatpump/.pioenvs/bedroom_east_heatpump/src/esphome/components/mitsubishi_heatpump/espmhp.cpp.o: in function `MitsubishiHeatPump::traits()': espmhp.cpp:(.text._ZN18MitsubishiHeatPump6traitsEv+0x4): multiple definition of `MitsubishiHeatPump::traits()'; /data/bedroom_east_heatpump/.pioenvs/bedroom_east_heatpump/src/esphome-mitsubishiheatpump/espmhp.cpp.o:espmhp.cpp:(.text._ZN18MitsubishiHeatPump6traitsEv+0x80): first defined here ``` ### Step 4: Configure the heatpump Add a `mitsubishi_heatpump` to your ESPHome config: ```yaml climate: - platform: mitsubishi_heatpump name: "My Heat Pump" # Optional hardware_uart: UART0 # Optional update_interval: 500ms ``` #### ESP8266 platforms On ESP8266 you'll need to disable logging to serial because it conflicts with the heatpump UART: ```yaml logger: baud_rate: 0 ``` #### ESP32 platforms On ESP32 you can change `hardware_uart` to `UART1` or `UART2` and keep logging enabled on the main serial port. #### UART Notes *Note:* this component DOES NOT use the ESPHome `uart` component, as it requires direct access to a hardware UART via the Arduino `HardwareSerial` class. The Mitsubishi Heatpump units use an atypical serial port setting ("even parity"). Parity bit support is not implemented in any of the existing software serial libraries, including the one in ESPHome. There's currently no way to guarantee access to a hardware UART nor retrieve the `HardwareSerial` handle from the `uart` component within the ESPHome framework. # Example configurations Below is an example configuration which will include wireless strength indicators and permit over the air updates. You'll need to create a `secrets.yaml` file inside of your `esphome` directory with entries for the various items prefixed with `!secret`. ## ESP8266 Example Configuration ```yaml substitutions: name: hptest friendly_name: Test Heatpump esphome: name: ${name} platform: ESP8266 board: esp01_1m # Boards tested: ESP-01S (ESP8266), Wemos D1 Mini (ESP8266); ESP32 Wifi-DevKit2 wifi: ssid: !secret wifi_ssid password: !secret wifi_password # Enable fallback hotspot (captive portal) in case wifi connection fails ap: ssid: "${friendly_name} Fallback Hotspot" password: !secret fallback_password # Note: if upgrading from 1.x releases of esphome-mitsubishiheatpump, be sure # to remove any old entries from the `libraries` and `includes` section. #libraries: # Remove reference to SwiCago/HeatPump #includes: # Remove reference to src/esphome-mitsubishiheatpump captive_portal: # Enable logging logger: # ESP8266 only - disable serial port logging, as the HeatPump component # needs the sole hardware UART on the ESP8266 baud_rate: 0 # Enable Home Assistant API api: ota: # Enable Web server. web_server: port: 80 # Sync time with Home Assistant. time: - platform: homeassistant id: homeassistant_time # Text sensors with general information. text_sensor: # Expose ESPHome version as sensor. - platform: version name: ${name} ESPHome Version # Expose WiFi information as sensors. - platform: wifi_info ip_address: name: ${name} IP ssid: name: ${name} SSID bssid: name: ${name} BSSID # Sensors with general information. sensor: # Uptime sensor. - platform: uptime name: ${name} Uptime # WiFi Signal sensor. - platform: wifi_signal name: ${name} WiFi Signal update_interval: 60s external_components: - source: github://geoffdavis/esphome-mitsubishiheatpump climate: - platform: mitsubishi_heatpump name: "${friendly_name}" # ESP32 only - change UART0 to UART1 or UART2 and remove the # logging:baud_rate above to allow the built-in UART0 to function for # logging. # For ESP32 specifying baud_rate is mandatory, otherwise a boot loop occurs! hardware_uart: UART0 baud_rate: 9600 ``` ## ESP32 Example Configuration ```yaml substitutions: name: hptest friendly_name: Test Heatpump esphome: name: ${name} esp32: board: lolin_s2_mini variant: ESP32S2 framework: type: arduino version: 2.0.3 platform_version: 5.0.0 wifi: ssid: !secret wifi_ssid password: !secret wifi_password # Enable fallback hotspot (captive portal) in case wifi connection fails ap: ssid: "${friendly_name} Fallback Hotspot" password: !secret fallback_password captive_portal: # Enable logging logger: # Enable Home Assistant API api: ota: # Enable Web server. web_server: port: 80 # Sync time with Home Assistant. time: - platform: homeassistant id: homeassistant_time # Text sensors with general information. text_sensor: # Expose ESPHome version as sensor. - platform: version name: ${name} ESPHome Version # Expose WiFi information as sensors. - platform: wifi_info ip_address: name: ${name} IP ssid: name: ${name} SSID bssid: name: ${name} BSSID # Sensors with general information. sensor: # Uptime sensor. - platform: uptime name: ${name} Uptime # WiFi Signal sensor. - platform: wifi_signal name: ${name} WiFi Signal update_interval: 60s external_components: - source: github://geoffdavis/esphome-mitsubishiheatpump climate: - platform: mitsubishi_heatpump name: "${friendly_name}" # ESP32 only - change UART0 to UART1 or UART2 and remove the # logging:baud_rate above to allow the built-in UART0 to function for # logging. hardware_uart: UART1 ``` # Advanced configuration Some models of heat pump require different baud rates or don't support all possible modes of operation. You can configure mulitple climate "traits" in YAML to match what your hardware supports. For example: ```yaml climate: - platform: mitsubishi_heatpump name: "My heat pump" hardware_uart: UART2 baud_rate: 9600 rx_pin: 9 tx_pin: 10 supports: mode: ["HEAT_COOL", "COOL", "HEAT", "FAN_ONLY"] fan_mode: ["AUTO", "LOW", "MEDIUM", "HIGH"] swing_mode: ["OFF", "VERTICAL"] visual: min_temperature: 16 max_temperature: 31 temperature_step: 1.0 ``` ## Configuration variables that affect this library directly * *hardware\_uart* (_Optional_): the hardware UART instance to use for communcation with the heatpump. On ESP8266, only `UART0` is usable. On ESP32, `UART0`, `UART1`, and `UART2` are all valid choices. Default: `UART0` * *baud\_rate* (_Optional_): Serial BAUD rate used to communicate with the HeatPump. Most systems use the default value of `4800` baud, but some use `9600`. Default: `4800` * *rx\_pin* (_Optional_): pin number to use as RX for the specified hardware UART (ESP32 only - ESP8266 hardware UART's pins aren't configurable). * *tx\_pin* (_Optional_): pin number to use as TX for the specified hardware UART (ESP32 only - ESP8266 hardware UART's pins aren't configurable). * *update\_interval* (_Optional_, range: 0ms to 9000ms): How often this component polls the heatpump hardware, in milliseconds. Maximum usable value is 9 seconds due to underlying issues with the HeatPump library. Default: 500ms * *supports* (_Optional_): Supported features for the device. * *mode* (_Optional_, list): Supported climate modes for the HeatPump. Default: `['HEAT_COOL', 'COOL', 'HEAT', 'DRY', 'FAN_ONLY']` * *fan_mode* (_Optional_, list): Supported fan speeds for the HeatPump. Default: `['AUTO', 'DIFFUSE', 'LOW', 'MEDIUM', 'MIDDLE', 'HIGH']` * *swing_mode* (_Optional_, list): Supported fan swing modes. Most Mitsubishi units only support the default. Default: `['OFF', 'VERTICAL']` ## Other configuration * *id* (_Optional_): used to identify multiple instances, e.g. "denheatpump" * *name* (_Required_): The name of the climate component, e.g. "Den Heatpump" * *visual* (_Optional_): The core `Climate` component has several *visual* options that can be set. See the [Climate Component](https://esphome.io/components/climate/index.html) documentation for details. ## Remote temperature It is possible to use an external temperature sensor to tell the heat pump what the room temperature is, rather than relying on its internal temperature sensor. You can do this by calling `set_remote_temperature(float temp)` on the `mitsubishi_heatpump` object in a lambda. Note that you can call `set_remote_temperature(0)` to switch back to the internal temperature sensor. There are several ways you could make use of this functionality. One is to use a sensor automation: ```yaml climate: - platform: mitsubishi_heatpump name: "Lounge heat pump" id: hp sensor: # You could use a Bluetooth temperature sensor - platform: atc_mithermometer mac_address: "XX:XX:XX:XX:XX:XX" temperature: name: "Lounge temperature" on_value: then: - lambda: 'id(hp).set_remote_temperature(x);' # Or you could use a HomeAssistant sensor - platform: homeassistant name: "Temperature Sensor From Home Assistant" entity_id: sensor.temperature_sensor on_value: then: - lambda: 'id(hp).set_remote_temperature(x);' ``` Alternatively you could define a [service](https://www.esphome.io/components/api.html#user-defined-services) that HomeAssistant can call: ```yaml api: services: - service: set_remote_temperature variables: temperature: float then: - lambda: 'id(hp).set_remote_temperature(temperature);' - service: use_internal_temperature then: - lambda: 'id(hp).set_remote_temperature(0);' ``` # See Also ## Other Implementations The [gysmo38/mitsubishi2MQTT](https://github.com/gysmo38/mitsubishi2MQTT) Arduino sketch also uses the `SwiCago/HeatPump` library, and works with MQTT directly. The author of this implementation found `mitsubishi2MQTT`'s WiFi stack to not be particularly robust, but the controls worked fine. Like this ESPHome repository, `mitsubishi2MQTT` will automatically register the device in your HomeAssistant instance if you have HA configured to do so. There's also the built-in to ESPHome [Mitsubishi](https://github.com/esphome/esphome/blob/dev/esphome/components/mitsubishi/mitsubishi.h) climate component. The big drawback with the built-in component is that it uses Infrared Remote commands to talk to the Heat Pump. By contrast, the approach used by this repository and it's underlying `HeatPump` library allows bi-directional communication with the Mitsubishi system, and can detect when someone changes the settings via an IR remote. ## Reference documentation The author referred to the following documentation repeatedly: * [ESPHome Custom Sensors Reference](https://esphome.io/components/sensor/custom.html) * [ESPHome Custom Climate Components Reference](https://esphome.io/components/climate/custom.html) * [ESPHome External Components Reference](https://esphome.io/components/external_components.html) * [Source for ESPHome's Climate Component](https://github.com/esphome/esphome/tree/master/esphome/components/climate)