> 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-wsci/kommunikationsprotokoll/5.-konfigurationsubersicht-und-reset.md).

# 5. Konfigurationsübersicht und Reset

## 5.1 Hardware Factory Reset Lock

{% tabs %}
{% tab title="GET HARDWARE FACTORY RESET LOCK" %}
Dieser Befehl fordert die Einstellung für die Taste an: Wiederherstellen der Werkseinstellungen per Tastendruck aktiviert oder deaktiviert.

**Downlink**

| Byte | Bit(s) |        Value        |
| :--: | :----: | :-----------------: |
|   0  |   7:0  | `0x3A` (Command ID) |

**Uplink**

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

{% tab title="SET HARDWARE FACTORY RESET LOCK" %}
Setzt die Sperre für die Wiederherstellung der Werkseinstellungen per Tastendruck.

**Beispiel**

```
0x39 01 = Hardware-Werksreset gesperrt
```

**Downlink**

|      Byte     | Bit(s) |            Value           |
| :-----------: | :----: | :------------------------: |
|       0       |   7:0  |     `0x39` (Command ID)    |
|       1       |   7:0  | `ID_FACTORY_RESET_HW_LOCK` |
|  {% endtab %} |        |                            |
| {% endtabs %} |        |                            |

<details>

<summary>ID_FACTORY_RESET_HW_LOCK</summary>

|   Eigenschaft  |                                                     Wert                                                    |
| :------------: | :---------------------------------------------------------------------------------------------------------: |
|  Beschreibung  |                         Aktiviert oder deaktiviert das Zurücksetzen per Systemtaste.                        |
|      Größe     |                                                    1 Bit                                                    |
|  Wertebereich  |                                                     0–1                                                     |
|  Standardwert  |                                                      1                                                      |
| Interpretation | <p><code>1</code> = Hardware-Werksreset gesperrt</p><p><code>0</code> = Hardware-Werksreset freigegeben</p> |

</details>

***

## 5.2 Auslesen der Gerätekonfiguration und Reset

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

**Downlink**

| Byte | Bit(s) |        Value        |
| :--: | :----: | :-----------------: |
|   0  |   7:0  | `0xFC` (Command ID) |

**Uplink**

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

***

## 5.3 Factory Reset

{% tabs %}
{% tab title="PERFORM FACTORY RESET" %}
Setzt alle Parameter auf die Standardwerte zurück.

|      Byte     | Bit(s) |        Value        |
| :-----------: | :----: | :-----------------: |
|       0       |   7:0  | `0xFD` (Command ID) |
|  {% endtab %} |        |                     |
| {% endtabs %} |        |                     |

***

## 5.3 Soft Reset

{% tabs %}
{% tab title="PERFORM SOFT RESET" %}
Startet die Software neu

|      Byte     | Bit(s) |        Value        |
| :-----------: | :----: | :-----------------: |
|       0       |   7:0  | `0xFE` (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-wsci/kommunikationsprotokoll/5.-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.
