Skip to content

Commit

Permalink
Merge pull request #188 from MiG-41/master
Browse files Browse the repository at this point in the history
Added KIT-WQC09H3E8  T-CAP - Super Quiet
  • Loading branch information
Egyras authored Oct 30, 2020
2 parents 3a78a9f + c4650ef commit ca96406
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions HeatPumpType.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Assuming that bytes from #129 to #138 are unique for each model of Aquarea heat
|11 | E2 CF 0B 41 34 82 D1 0B 31 35 | Monoblock | WH-MXC09H3E5 | Monoblock | 9 | 1ph | T-CAP |
|12 | 62 D2 0B 45 54 42 D2 0B 47 55 | WH-ADC0309J3E5 | WH-UD09JE5 | KIT-ADC09JE5 | 9 | 1ph | HP - All-In-One |
|13 | E2 CF 0C 74 09 12 D0 0D 95 05 | WH-ADC0916H9E8 | WH-UX12HE8 | KIT-AXC12HE8 | 12 | 3ph | T-CAP - All-In-One |
|14 | E2 CF 0B 82 05 12 D0 0C 91 05 | WH-SQC09H3E8 | WH-UQ09HE8 | KIT-WQC09H3E8 | 9 | 3ph | T-CAP - Super Quiet |

Byte 132 is used for Heat Pump model identification in the code.

Expand Down
4 changes: 3 additions & 1 deletion HeishaMon/decode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,9 @@ String getModel(byte input) {
case 69:
return "12";
case 116:
return "13";
return "13";
case 130:
return "14";
default:
return "-1";
}
Expand Down
2 changes: 1 addition & 1 deletion HeishaMon/decode.h
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ static const char *Ampere[] = {"value", "Ampere"};
static const char *Minutes[] = {"value", "Minutes"};
static const char *Duty[] = {"value", "Duty"};
static const char *HeatCoolModeDesc[] = {"2", "Comp. Curve", "Direct"};
static const char *Model[] = {"14", "WH-MDC05H3E5", "WH-MDC07H3E5", "IDU:WH-SXC09H3E5, ODU:WH-UX09HE5", "IDU:WH-SDC09H3E8, ODU:WH-UD09HE8", "IDU:WH-SXC09H3E8, ODU:WH-UX09HE8", "IDU:WH-SXC12H9E8, ODU:WH-UX12HE8", "IDU:WH-SXC16H9E8, ODU:WH-UX16HE8", "IDU:WH-SDC05H3E5, ODU:WH-UD05HE5", "IDU:WH-SDC0709J3E5, ODU:WH-UD09JE5", "WH-MDC05J3E5", "WH-MDC09H3E5", "WH-MXC09H3E5", "IDU:WH-ADC0309J3E5, ODU:WH-UD09JE5", "IDU:WH-ADC0916H9E8, ODU:WH-UX12HE8"};
static const char *Model[] = {"15", "WH-MDC05H3E5", "WH-MDC07H3E5", "IDU:WH-SXC09H3E5, ODU:WH-UX09HE5", "IDU:WH-SDC09H3E8, ODU:WH-UD09HE8", "IDU:WH-SXC09H3E8, ODU:WH-UX09HE8", "IDU:WH-SXC12H9E8, ODU:WH-UX12HE8", "IDU:WH-SXC16H9E8, ODU:WH-UX16HE8", "IDU:WH-SDC05H3E5, ODU:WH-UD05HE5", "IDU:WH-SDC0709J3E5, ODU:WH-UD09JE5", "WH-MDC05J3E5", "WH-MDC09H3E5", "WH-MXC09H3E5", "IDU:WH-ADC0309J3E5, ODU:WH-UD09JE5", "IDU:WH-ADC0916H9E8, ODU:WH-UX12HE8", "IDU:WH-SQC09H3E8, ODU:WH-UQ09HE8"};
static const char **topicDescription[] = {
OffOn, //TOP0
LitersPerMin, //TOP1
Expand Down

0 comments on commit ca96406

Please sign in to comment.