Skip to content

Commit

Permalink
Merge branch 'release/1.0.2'
Browse files Browse the repository at this point in the history
Fixes GH-1
  • Loading branch information
geoffdavis committed Mar 14, 2020
2 parents cfcaa1e + 75d680a commit 79afe8f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@ ESP32 using the [ESPHome](https://esphome.io) framework.
* 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.
NOTE: REQUIRES SEVERAL FIXES - SEE [PR
#155](https://github.com/SwiCago/HeatPump/pull/155)
NOTE: REQUIRES SEVERAL FIXES - SEE [PR #155](https://github.com/SwiCago/HeatPump/pull/155)

## Requirements
* https://github.com/geoffdavis/HeatPump#init_fix (until upstream is fixed)
* ESPHome 1.15.0-dev or greater

## Supported Microcontrollers
This library should work on most ESP8266 or ESP32 platforms. It has been tested
Expand Down Expand Up @@ -48,7 +51,11 @@ to the control
board](https://github.com/SwiCago/HeatPump/issues/13#issuecomment-457897457)
via CN105.

### Step 2: Clone this repository into your ESPHome configuration directory
### Step 2: Use ESPHome 1.15.0-dev or higher

The code in this repository makes use of a number of features in the as-yet unreleased 1.15.0 version of ESPHome, including various Fan modes.

### Step 3: Clone this repository into your ESPHome configuration directory

This repository needs to live in your ESPHome configuration directory, as it
doesn't work correctly when used as a Platform.IO library, and there doesn't
Expand All @@ -61,7 +68,7 @@ On Hass.IO, you'll want to do something like:
* `cd src`
* `git clone https://github.com/geoffdavis/esphome-mitsubishiheatpump.git`

### Step 3: Configure your ESPHome device with YAML
### Step 4: Configure your ESPHome device with YAML

Create an ESPHome YAML configuration with the following sections:
* `esphome: libraries: [https://github.com/geoffdavis/HeatPump#init_fix]`
Expand Down
2 changes: 1 addition & 1 deletion espmhp.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ using namespace esphome;

static const char* TAG = "MitsubishiHeatPump"; // Logging tag

static const char* ESPMHP_VERSION = "1.0.1";
static const char* ESPMHP_VERSION = "1.0.2";

/* If polling interval is greater than 9 seconds, the HeatPump
library reconnects, but doesn't then follow up with our data request.*/
Expand Down

0 comments on commit 79afe8f

Please sign in to comment.