Skip to content

Commit

Permalink
Update docs with outside air temp sensor
Browse files Browse the repository at this point in the history
  • Loading branch information
phidauex authored Oct 8, 2024
1 parent 0b544d0 commit c6272c2
Showing 1 changed file with 58 additions and 32 deletions.
90 changes: 58 additions & 32 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,8 @@ climate:
current_temperature: 0.1
compressor_frequency_sensor:
name: ${name} Compressor Frequency
outside_air_temperature_sensor:
name: ${name} Outside Air Temperature
vertical_vane_select:
name: ${name} Vertical Vane
horizontal_vane_select:
Expand Down Expand Up @@ -266,26 +268,26 @@ esphome:
friendly_name: My Heatpump 1
# For ESP8266 Devices
esp8266:
board: d1_mini
uart:
id: HP_UART
baud_rate: 2400
tx_pin: 1
rx_pin: 3
# For ESP32 Devices
#esp32:
# board: esp32doit-devkit-v1
# framework:
# type: esp-idf
#esp8266:
# board: d1_mini
#
#uart:
# id: HP_UART
# baud_rate: 2400
# tx_pin: GPIO17
# rx_pin: GPIO16
# tx_pin: 1
# rx_pin: 3
# For ESP32 Devices
esp32:
board: esp32doit-devkit-v1
framework:
type: esp-idf
uart:
id: HP_UART
baud_rate: 2400
tx_pin: GPIO17
rx_pin: GPIO16
external_components:
- source: github://echavet/MitsubishiCN105ESPHome
Expand Down Expand Up @@ -344,26 +346,26 @@ esphome:
friendly_name: ${friendly_name}
# For ESP8266 Devices
esp8266:
board: d1_mini
uart:
id: HP_UART
baud_rate: 2400
tx_pin: 1
rx_pin: 3
# For ESP32 Devices
#esp32:
# board: esp32doit-devkit-v1
# framework:
# type: esp-idf
#esp8266:
# board: d1_mini
#
#uart:
# id: HP_UART
# baud_rate: 2400
# tx_pin: GPIO17
# rx_pin: GPIO16
# tx_pin: 1
# rx_pin: 3
# For ESP32 Devices
esp32:
board: esp32doit-devkit-v1
framework:
type: esp-idf
uart:
id: HP_UART
baud_rate: 2400
tx_pin: GPIO17
rx_pin: GPIO16
external_components:
- source: github://echavet/MitsubishiCN105ESPHome
Expand Down Expand Up @@ -494,6 +496,8 @@ climate:
current_temperature: 0.1
compressor_frequency_sensor:
name: ${name} Compressor Frequency
outside_air_temperature_sensor:
name: ${name} Outside Air Temperature
vertical_vane_select:
name: ${name} Vertical Vane
horizontal_vane_select:
Expand Down Expand Up @@ -544,6 +548,28 @@ sensor:

## Diagnostic Sensors

### Outside Air Temperature

This sensor reads the outdoor unit's air temperature reading, in 1.0 degree C increments. Not all outdoor units support this sensor. Some outdoor units will send an accurate value while the unit is operating, or in heat/cool mode, but will send -63.5C when offline.

```yaml
outside_air_temperature_sensor:
name: ${name} Outside Air Temperature
```

Compatible units (as reported by users):

| Indoor | Outdoor | Temperature |
|-----------------|------------------|-----------------------------------------|
| MSZ-AP25VGD | MXZ-4F80VGD | Works |
| MSZ-AP35VGD | MUZ-AP35VG | Works but reports -63.5C when idle |
| MSZ-AP60VGD | MUZ-AP60VG | Works |
| MSZ-AP71VGD | MUZ-AP71VG | Works but reports -63.5C when idle |
| MSZ-GLxxNA | MXZ-SM42NAMHZ | Works |
| MSZ-RW25VG-SC1 | MUZ-RW25VGHZ-SC1 | Works |
| | MUZ-FD25NA | Not working |
| MSZ-LN35 | MUZ-LN35 | Not working |

### Auto and Stage Sensors

The below sensors were added recently based on the work of others in sorting out other messages and bytes. The names are likely to change as we work to determine exactly what the units are doing.
Expand Down

0 comments on commit c6272c2

Please sign in to comment.