> For the complete documentation index, see [llms.txt](https://docs.dnt.de/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.dnt.de/dnt-lw-wth/kommunikationsprotokoll/8.-konfigurationsubersicht-und-reset.md).

# 8. Konfigurationsübersicht und Reset

## 8.1 Tastensperre

{% hint style="info" %}
Bei Firmware Versionen < 1.2.0 muss das IR-Bit bei den folgenden Befehlen gesetzt sein:

* GET HARDWARE LOCK: 0xF5
* SET HARDWARE LOCK: 0xF6
  {% endhint %}

{% tabs %}
{% tab title="GET HARDWARE LOCK" %}
Abfrage der Hardware-Sperre.

**Downlink**

| Byte | Bit(s) |        Value        |
| :--: | :----: | :-----------------: |
|   0  |    7   |         `IR`        |
|   0  |   6:0  | `0x75` (Command ID) |

**Uplink**

|     Byte     | Bit(s) |        Value        |
| :----------: | :----: | :-----------------: |
|       0      |    7   |         Res.        |
|       0      |   6:0  | `0x75` (Command ID) |
|       1      |   7:0  |  `ID_HARDWARE_LOCK` |
| {% endtab %} |        |                     |

{% tab title="SET HARDWARE LOCK" %}
Aktiviert oder deaktiviert die Hardware-Sperre.

**Beispiel**

```
0xF6 07 = Werksreset + Änderung der Solltemperatur + Modus am Gerät gesperrt
```

**Downlink**

|      Byte     | Bit(s) |        Value        |
| :-----------: | :----: | :-----------------: |
|       0       |    7   |         Res.        |
|       0       |   6:0  | `0x76` (Command ID) |
|       1       |   7:0  |  `ID_HARDWARE_LOCK` |
|  {% endtab %} |        |                     |
| {% endtabs %} |        |                     |

<details>

<summary>ID_HARDWARE_LOCK</summary>

|   Eigenschaft  |                                                                                                          Wert                                                                                                          |
| :------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
|  Beschreibung  |                                                                                          Sperre verschiedener Tastenfunktionen                                                                                         |
|      Größe     |                                                                                                         1 Byte                                                                                                         |
|  Wertebereich  |                                                                                                          0–255                                                                                                         |
|  Standardwert  |                                                                                                            1                                                                                                           |
| Interpretation | <p><code>0</code> → Einstellung am Gerät durchführbar</p><p><code>1</code> → Einstellung am Gerät gesperrt</p><p>Bit 0: Werksreset</p><p>Bit 1: Änderung der Solltemperatur</p><p>Bit 2: Änderung des Modus</p><p></p> |
|   Persistent   |                                                                                                           Ja                                                                                                           |
|     Zugriff    |                                                                                                           r/w                                                                                                          |

</details>

## 8.2 Auslesen der Geräte Konfiguration und Reset

{% hint style="info" %}
Bei Firmware Versionen < 1.2.0 muss das IR-Bit bei den folgenden Befehlen gesetzt sein:

* GET ALL CONFIG = 0xFC
* PERFORM FACTROY RESET = 0xFD
* PERFORM SOFT RESET = 0xFE
  {% endhint %}

{% tabs %}
{% tab title="GET ALL CONFIG" %}
Abfrage der gesamten Konfiguration.

Das Gerät sendet die Antworten aller Get-Befehle.

**Downlink**

| Byte | Bit(s) |        Value        |
| :--: | :----: | :-----------------: |
|   0  |    7   |         `IR`        |
|   0  |   6:0  | `0x7C` (Command ID) |

**Uplink**

|     Byte     | Bit(s) |         Value         |
| :----------: | :----: | :-------------------: |
|       0      |   7:0  | `Config Command ID 1` |
|       1      |   7:0  |    `Config Data 1`    |
|       …      |    …   |           …           |
|      N-1     |   7:0  | `Config Command ID M` |
|       N      |   7:0  |    `Config Data N`    |
| {% endtab %} |        |                       |

{% tab title="PERFORM FACTORY RESET" %}
Führt einen Werksreset durch.

Alle Parameter werden auf Standardwerte zurückgesetzt.

**Downlink**

|     Byte     | Bit(s) |        Value        |
| :----------: | :----: | :-----------------: |
|       0      |    7   |         Res.        |
|       0      |   6:0  | `0x7D` (Command ID) |
| {% endtab %} |        |                     |

{% tab title="PERFORM SOFT RESET" %}
Führt einen Software-Reset durch.

Alle Parameter bleiben erhalten.

**Downlink**

|      Byte     | Bit(s) |        Value        |
| :-----------: | :----: | :-----------------: |
|       0       |    7   |         Res.        |
|       0       |   6:0  | `0x7E` (Command ID) |
|  {% endtab %} |        |                     |
| {% endtabs %} |        |                     |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.dnt.de/dnt-lw-wth/kommunikationsprotokoll/8.-konfigurationsubersicht-und-reset.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
