From a7112fee5e5ac0789a156d0db2106236e7543463 Mon Sep 17 00:00:00 2001 From: Marwin Misselhorn Date: Wed, 1 Oct 2025 13:20:15 +0200 Subject: [PATCH 1/2] Document ways of setting purifier, night, circulator modes --- .../it-protocol/0x41-set-request/0x08-set-run-state.md | 6 +++++- .../0x62-get-response/0x42-unknown-hvac-options.md | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/developer/it-protocol/0x41-set-request/0x08-set-run-state.md b/docs/developer/it-protocol/0x41-set-request/0x08-set-run-state.md index b5e8b41..083207e 100644 --- a/docs/developer/it-protocol/0x41-set-request/0x08-set-run-state.md +++ b/docs/developer/it-protocol/0x41-set-request/0x08-set-run-state.md @@ -11,7 +11,11 @@ Seems to correlate (at least partially) with [`0x62 0x09` - Get Run State][get-r | 5* | (UNCONFIRMED) Power Saving Mode | 0x00: Off
0x0A: On | | Update flag 0x0800 | | 6** | Airflow control mode (i-See) | [Airflow control mode](#airflow-control-mode-i-see) | | Update flag 0x2000
Not all values supported for all units. | | 7* | (UNCONFIRMED) Buzzer | 0x00: No
0x01: Yes | | Update flag 0x1000
Sending 0x01 results in some units beeping twice | -| 11* | (UNCONFIRMED) Notification for remote control navigation | 0x02 : 0x00 | | Update flag 0x0002 | +| 11* | (UNCONFIRMED) Notification for remote control navigation | 0x02 : 0x00 | | Update flag 0x0002 | +| 12 | Air Purifier State | 0x00: Off
0x01: On | | Update flag 0x0004 | +| 13 | Night Mode State | 0x00: Off
0x01: On | | Update flag 0x0008 | +| 14 | (UNCONFIRMED) Circulator Mode State | 0x00: Off
0x01: On | | Update flag 0x0010
Not available on certain units | + **Extracted from Android app 霧ヶ峰REMOTE (v5.3.1)* diff --git a/docs/developer/it-protocol/0x62-get-response/0x42-unknown-hvac-options.md b/docs/developer/it-protocol/0x62-get-response/0x42-unknown-hvac-options.md index 146d8df..402b475 100644 --- a/docs/developer/it-protocol/0x62-get-response/0x42-unknown-hvac-options.md +++ b/docs/developer/it-protocol/0x62-get-response/0x42-unknown-hvac-options.md @@ -4,7 +4,7 @@ These options are extracted from an MSZ-AY HVAC device. Returns the boolean whether the option is currently active or not. -It cannot be set with the [`0x41` - Set Request](../0x41-set-request). +Options can be set with the [`0x08` - Set Run State](../0x41-set-request/0x08-set-run-state) command. | Byte | Purpose | Possible Values | Notes | |------|-------------------|---------------------|------------------------------------------| From 4ee04a0b52a8b7b310c26a4a5f32763aa285f30e Mon Sep 17 00:00:00 2001 From: Marwin Misselhorn Date: Wed, 1 Oct 2025 13:34:35 +0200 Subject: [PATCH 2/2] Make naming consistent, small fixes --- .../it-protocol/0x41-set-request/0x08-set-run-state.md | 9 +++++---- .../0x62-get-response/0x42-unknown-hvac-options.md | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/developer/it-protocol/0x41-set-request/0x08-set-run-state.md b/docs/developer/it-protocol/0x41-set-request/0x08-set-run-state.md index 083207e..b673402 100644 --- a/docs/developer/it-protocol/0x41-set-request/0x08-set-run-state.md +++ b/docs/developer/it-protocol/0x41-set-request/0x08-set-run-state.md @@ -12,15 +12,16 @@ Seems to correlate (at least partially) with [`0x62 0x09` - Get Run State][get-r | 6** | Airflow control mode (i-See) | [Airflow control mode](#airflow-control-mode-i-see) | | Update flag 0x2000
Not all values supported for all units. | | 7* | (UNCONFIRMED) Buzzer | 0x00: No
0x01: Yes | | Update flag 0x1000
Sending 0x01 results in some units beeping twice | | 11* | (UNCONFIRMED) Notification for remote control navigation | 0x02 : 0x00 | | Update flag 0x0002 | -| 12 | Air Purifier State | 0x00: Off
0x01: On | | Update flag 0x0004 | -| 13 | Night Mode State | 0x00: Off
0x01: On | | Update flag 0x0008 | -| 14 | (UNCONFIRMED) Circulator Mode State | 0x00: Off
0x01: On | | Update flag 0x0010
Not available on certain units | - +| 12 | Air Purifier | 0x00: Off
0x01: On | | Update flag 0x0004 | +| 13 | Night Mode | 0x00: Off
0x01: On | | Update flag 0x0008 | +| 14 | Circulator Mode*** | 0x00: Off
0x01: On | | Update flag 0x0010 | **Extracted from Android app 霧ヶ峰REMOTE (v5.3.1)* ***Tested on MSZ-LN25VG2W* +*****Might be same byte as the mode ECONO COOL? May be different functions on different units* + [get-run-state]: ../0x62-get-response/0x09-get-run-state.md ### Airflow control mode (i-See) diff --git a/docs/developer/it-protocol/0x62-get-response/0x42-unknown-hvac-options.md b/docs/developer/it-protocol/0x62-get-response/0x42-unknown-hvac-options.md index 402b475..665f028 100644 --- a/docs/developer/it-protocol/0x62-get-response/0x42-unknown-hvac-options.md +++ b/docs/developer/it-protocol/0x62-get-response/0x42-unknown-hvac-options.md @@ -4,7 +4,7 @@ These options are extracted from an MSZ-AY HVAC device. Returns the boolean whether the option is currently active or not. -Options can be set with the [`0x08` - Set Run State](../0x41-set-request/0x08-set-run-state) command. +Options can be set with the [`0x08` - Set Run State](../0x41-set-request/0x08-set-run-state.md) command. | Byte | Purpose | Possible Values | Notes | |------|-------------------|---------------------|------------------------------------------|