Skip to content

Commit

Permalink
remove Room_Setpoint (which is reply to Room_Heating_Setpoint)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arnold-n committed Aug 2, 2024
1 parent 2978070 commit b8c975c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
9 changes: 4 additions & 5 deletions doc/LogicalFormat/Daikin-protocol-EHYHBX08AAV3.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Header: 000010
| 4 | 00 | ? |
| 5 | 00 | ? |
| 6 | 00 | ? |
| 7-8 | 13 05 | Target room temperature | f8.8
| 7-8 | 14 00 | Room heating setpoint | f8/8
| 9:7-6 | 00 - 11 | Quiet level (0-3) | bits
| 9:5 | 0/1 | Heating/Cooling automatic mode | bit
| 9:others | 0 | ? | bit
Expand All @@ -77,8 +77,7 @@ Header: 000010
|12:others | 0 | ? | bit
| 13 | 00 | ? |
| 14 | 00 | ? |
| 15 | 0F | ? | flag8/bits?
| 16 | 00 | ? |
| 15-16 | 16 00 | Room cooling setpoint | f8/8
|17:6 | 0/1 | operation (off/on) | bit
|17:1 | 0/1 | booster (off/on) | bit
|17:others | 0 | ? | bit
Expand Down Expand Up @@ -108,9 +107,9 @@ Header: 400010
| 3:0 | 0/1 | status 3-way valve (off/on) | bit
| 3:others | 0 | ? | bit
| 4-5 | 3C | DHW target temperature | f8s8
| 6 | 0F | ? | u8 / flag8?
| 6 | 16 | Room cooling setpoint | f8/8
| 7 | 00 | ?
| 8 | 14 | Target room temperature | u8 / f8.8?
| 8 | 14 | Room heating setpoint | f8/8
| 9 | 00 | ?
|10 | 1A | ?
|11:2 | 0/1 | Quiet mode (off/on) | bit
Expand Down
7 changes: 4 additions & 3 deletions examples/P1P2MQTT-bridge/P1P2_ParameterConversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -3022,10 +3022,11 @@ byte bytesbits2keyvalue(byte packetSrc, byte packetType, byte payloadIndex, byte
HATEMP1;
KEY2_PUB_CONFIG_CHECK_ENTITY("DHW_Setpoint_1");
VALUE_f8s8_LE;
case 6 : bcnt = 11; BITBASIS_UNKNOWN;
case 7 : UNKNOWN_BYTE;
// bcnt = 11 no longer used here
case 6 : return 0;
case 7 : SUBDEVICE("_Room"); HATEMP1; KEY2_PUB_CONFIG_CHECK_ENTITY("Room_Cooling_Setpoint_2"); VALUE_f8s8_LE;
case 8 : return 0;
case 9 : SUBDEVICE("_Room"); HACONFIG; HATEMP1; KEY2_PUB_CONFIG_CHECK_ENTITY("Room_Setpoint"); VALUE_f8s8_LE;
case 9 : SUBDEVICE("_Room"); HATEMP1; KEY2_PUB_CONFIG_CHECK_ENTITY("Room_Heating_Setpoint_2"); VALUE_f8s8_LE;
case 10 : switch (bitNr) {
case 8 : bcnt = 12; BITBASIS;
case 5 : KEYBIT_PUB_CONFIG_PUB_ENTITY("Climate_HC_Auto");
Expand Down

0 comments on commit b8c975c

Please sign in to comment.