> 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-etrv/kommunikationsprotokoll/3.-geratezeit.md).

# 3. Gerätezeit

## 3.1 Gerätezeit

{% tabs %}
{% tab title="GET DEVICE TIME" %}
Abfrage der lokalen Gerätezeit.

**Downlink**

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

**Uplink**

|     Byte     | Bit(s) |          Value          |
| :----------: | :----: | :---------------------: |
|       0      |    7   |           Res.          |
|       0      |   6:0  |   `0x08` (Command ID)   |
|       1      |   7:6  |           Res.          |
|       1      |   5:0  |  `ID_LOCAL_TIME_SECOND` |
|       2      |   7:2  |  `ID_LOCAL_TIME_MINUTE` |
|       2      |   1:0  |   `ID_LOCAL_TIME_HOUR`  |
|       3      |   7:5  |   `ID_LOCAL_TIME_HOUR`  |
|       3      |   4:0  |   `ID_LOCAL_TIME_DAY`   |
|       4      |    7   |   `ID_LOCAL_TIME_DST`   |
|       4      |   6:4  | `ID_LOCAL_TIME_WEEKDAY` |
|       4      |   3:0  |  `ID_LOCAL_TIME_MONTH`  |
|       5      |   7:0  |   `ID_LOCAL_TIME_YEAR`  |
|       6      |   7:0  |  `ID_UTC(_DST)_OFFSET`  |
| {% endtab %} |        |                         |

{% tab title="SET DEVICE TIME" %}
Setzen der globalen Gerätezeit.

**Beispiel**

```
097A6F031Ah = 15.04.2026, 14:30 UTC
```

|      Byte     | Bit(s) |          Value          |
| :-----------: | :----: | :---------------------: |
|       0       |    7   |           Res.          |
|       0       |   6:0  |   `0x09` (Command ID)   |
|       1       |   7:2  | `ID_GLOBAL_TIME_MINUTE` |
|       1       |   1:0  |  `ID_GLOBAL_TIME_HOUR`  |
|       2       |   7:5  |  `ID_GLOBAL_TIME_HOUR`  |
|       2       |   4:0  |   `ID_GLOBAL_TIME_DAY`  |
|       3       |   7:4  |           Res.          |
|       3       |   3:0  |  `ID_GLOBAL_TIME_MONTH` |
|       4       |   7:0  |  `ID_GLOBAL_TIME_YEAR`  |
|  {% endtab %} |        |                         |
| {% endtabs %} |        |                         |

<details>

<summary>ID_LOCAL_TIME_SECOND</summary>

|   Eigenschaft  |                          Wert                         |
| :------------: | :---------------------------------------------------: |
|  Beschreibung  |          Lokale Zeit des Gerätes — Sekunden.          |
|      Größe     |                         6 Bit                         |
|  Wertebereich  |                         0 - 59                        |
|  Standardwert  |                           -                           |
| Interpretation | <p><code>y = x</code></p><p><code>\[y] = s</code></p> |
|   Persistent   |                          Nein                         |
|     Zugriff    |                           r                           |

</details>

<details>

<summary>ID_LOCAL_TIME_MINUTE</summary>

|   Eigenschaft  |                           Wert                          |
| :------------: | :-----------------------------------------------------: |
|  Beschreibung  |            Lokale Zeit des Geräts — Minuten.            |
|      Größe     |                          6 Bit                          |
|  Wertebereich  |                          0 - 59                         |
|  Standardwert  |                            -                            |
| Interpretation | <p><code>y = x</code></p><p><code>\[y] = min</code></p> |
|   Persistent   |                           Nein                          |
|     Zugriff    |                            r                            |

</details>

<details>

<summary>ID_LOCAL_TIME_HOUR</summary>

|   Eigenschaft  |                          Wert                         |
| :------------: | :---------------------------------------------------: |
|  Beschreibung  |           Lokale Zeit des Geräts — Stunden.           |
|      Größe     |                         5 Bit                         |
|  Wertebereich  |                         0 - 23                        |
|  Standardwert  |                           -                           |
| Interpretation | <p><code>y = x</code></p><p><code>\[y] = h</code></p> |
|   Persistent   |                          Nein                         |
|     Zugriff    |                           r                           |

</details>

<details>

<summary>ID_LOCAL_TIME_DAY</summary>

|   Eigenschaft  |                          Wert                         |
| :------------: | :---------------------------------------------------: |
|  Beschreibung  |             Lokale Zeit des Geräts — Tag.             |
|      Größe     |                         5 Bit                         |
|  Wertebereich  |                         1 - 31                        |
|  Standardwert  |                           -                           |
| Interpretation | <p><code>y = x</code></p><p><code>\[y] = d</code></p> |
|   Persistent   |                          Nein                         |
|     Zugriff    |                           r                           |

</details>

<details>

<summary>ID_LOCAL_TIME_WEEKDAY</summary>

|   Eigenschaft  |                                                                                                              Wert                                                                                                             |
| :------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
|  Beschreibung  |                                                                                              Lokale Zeit des Geräts — Wochentag.                                                                                              |
|      Größe     |                                                                                                             3 Bit                                                                                                             |
|  Wertebereich  |                                                                                                             0 - 6                                                                                                             |
|  Standardwert  |                                                                                                               -                                                                                                               |
| Interpretation | <p><code>0</code> → Montag</p><p><code>1</code> → Dienstag</p><p><code>2</code> → Mittwoch</p><p><code>3</code> → Donnerstag</p><p><code>4</code> → Freitag</p><p><code>5</code> → Samstag</p><p><code>6</code> → Sonntag</p> |
|   Persistent   |                                                                                                              Nein                                                                                                             |
|     Zugriff    |                                                                                                               r                                                                                                               |

</details>

<details>

<summary>ID_LOCAL_TIME_MONTH</summary>

|   Eigenschaft  |                              Wert                             |
| :------------: | :-----------------------------------------------------------: |
|  Beschreibung  |                Lokale Zeit des Geräts — Monat.                |
|      Größe     |                             4 Bit                             |
|  Wertebereich  |                             0 - 11                            |
|  Standardwert  |                               -                               |
| Interpretation | <p><code>y = x + 1</code></p><p><code>\[y] = Monat</code></p> |
|   Persistent   |                              Nein                             |
|     Zugriff    |                               r                               |

</details>

<details>

<summary>ID_LOCAL_TIME_YEAR</summary>

|   Eigenschaft  |                             Wert                             |
| :------------: | :----------------------------------------------------------: |
|  Beschreibung  |                Lokale Zeit des Geräts — Jahr.                |
|      Größe     |                             8 Bit                            |
|  Wertebereich  |                            0 - 37                            |
|  Standardwert  |                               -                              |
| Interpretation | <p><code>y = x + 2000</code></p><p><code>\[y] = a</code></p> |
|   Persistent   |                             Nein                             |
|     Zugriff    |                               r                              |

</details>

<details>

<summary>ID_LOCAL_TIME_DST</summary>

|   Eigenschaft  |                                       Wert                                       |
| :------------: | :------------------------------------------------------------------------------: |
|  Beschreibung  |                   Lokale Zeit des Geräts — Sommer-/Winterzeit.                   |
|      Größe     |                                       1 Bit                                      |
|  Wertebereich  |                                       0 - 1                                      |
|  Standardwert  |                                         -                                        |
| Interpretation | <p><code>0</code> → Sommerzeit aktiv</p><p><code>1</code> → Winterzeit aktiv</p> |
|   Persistent   |                                       Nein                                       |
|     Zugriff    |                                         r                                        |

</details>

<details>

<summary>ID_UTC(_DST)_OFFSET</summary>

|   Eigenschaft  |                                Wert                                |
| :------------: | :----------------------------------------------------------------: |
|  Beschreibung  |                Aktiver UTC-Offset der lokalen Zeit.                |
|      Größe     |                                7 Bit                               |
|  Wertebereich  |                               0 - 96                               |
|  Standardwert  |                                  -                                 |
| Interpretation | <p><code>y = x \* 0,25 - 12</code></p><p><code>\[y] = h</code></p> |
|   Persistent   |                                Nein                                |
|     Zugriff    |                                  r                                 |

</details>

<details>

<summary>ID_GLOBAL_TIME_MINUTE</summary>

|   Eigenschaft  |                             Wert                             |
| :------------: | :----------------------------------------------------------: |
|  Beschreibung  | Minute der koordinierten Weltzeit zum Setzen der Gerätezeit. |
|      Größe     |                             6 Bit                            |
|  Wertebereich  |                            0 - 59                            |
|  Standardwert  |                               -                              |
| Interpretation |    <p><code>y = x</code></p><p><code>\[y] = min</code></p>   |
|   Persistent   |                             Nein                             |
|     Zugriff    |                               w                              |

</details>

<details>

<summary>ID_GLOBAL_TIME_HOUR</summary>

|   Eigenschaft  |                             Wert                             |
| :------------: | :----------------------------------------------------------: |
|  Beschreibung  | Stunde der koordinierten Weltzeit zum Setzen der Gerätezeit. |
|      Größe     |                             5 Bit                            |
|  Wertebereich  |                            0 - 23                            |
|  Standardwert  |                               -                              |
| Interpretation |     <p><code>y = x</code></p><p><code>\[y] = h</code></p>    |
|   Persistent   |                             Nein                             |
|     Zugriff    |                               w                              |

</details>

<details>

<summary>ID_GLOBAL_TIME_DAY</summary>

|   Eigenschaft  |                            Wert                           |
| :------------: | :-------------------------------------------------------: |
|  Beschreibung  | Tag der koordinierten Weltzeit zum Setzen der Gerätezeit. |
|      Größe     |                           5 Bit                           |
|  Wertebereich  |                           1 - 31                          |
|  Standardwert  |                             -                             |
| Interpretation |   <p><code>y = x</code></p><p><code>\[y] = d</code></p>   |
|   Persistent   |                            Nein                           |
|     Zugriff    |                             w                             |

</details>

<details>

<summary>ID_GLOBAL_TIME_MONTH</summary>

|   Eigenschaft  |                              Wert                             |
| :------------: | :-----------------------------------------------------------: |
|  Beschreibung  |  Monat der koordinierten Weltzeit zum Setzen der Gerätezeit.  |
|      Größe     |                             4 Bit                             |
|  Wertebereich  |                             0 - 11                            |
|  Standardwert  |                               -                               |
| Interpretation | <p><code>y = x + 1</code></p><p><code>\[y] = Monat</code></p> |
|   Persistent   |                              Nein                             |
|     Zugriff    |                               w                               |

</details>

<details>

<summary>ID_GLOBAL_TIME_YEAR</summary>

|   Eigenschaft  |                             Wert                             |
| :------------: | :----------------------------------------------------------: |
|  Beschreibung  |  Jahr der koordinierten Weltzeit zum Setzen der Gerätezeit.  |
|      Größe     |                             8 Bit                            |
|  Wertebereich  |                            0 - 37                            |
|  Standardwert  |                               -                              |
| Interpretation | <p><code>y = x + 2000</code></p><p><code>\[y] = a</code></p> |
|   Persistent   |                             Nein                             |
|     Zugriff    |                               w                              |

</details>

***

## 3.2 Gerätezeit Konfiguration

{% tabs %}
{% tab title="GET DEVICE TIME CONFIG" %}
Abfrage der Gerätezeitkonfiguration.

**Downlink**

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

**Uplink**

<table><thead><tr><th width="180.45458984375" align="center">Byte</th><th width="191.0908203125" align="center">Bit(s)</th><th align="center">Value</th></tr></thead><tbody><tr><td align="center">0</td><td align="center">7</td><td align="center">Res.</td></tr><tr><td align="center">0</td><td align="center">6:0</td><td align="center"><code>0x0A</code> (Command ID)</td></tr><tr><td align="center">1</td><td align="center">7</td><td align="center"><code>ID_AUTO_TIME_SYNC_EN</code></td></tr><tr><td align="center">1</td><td align="center">6:0</td><td align="center"><code>ID_UTC_OFFSET</code></td></tr><tr><td align="center">2</td><td align="center">7</td><td align="center">Res.</td></tr><tr><td align="center">2</td><td align="center">6:4</td><td align="center"><code>ID_UTC_DST_START_WEEK_OF_MONTH</code></td></tr><tr><td align="center">2</td><td align="center">3:0</td><td align="center"><code>ID_UTC_DST_START_MONTH</code></td></tr><tr><td align="center">3</td><td align="center">7:5</td><td align="center"><code>ID_UTC_DST_START_WEEKDAY</code></td></tr><tr><td align="center">3</td><td align="center">4:0</td><td align="center"><code>ID_UTC_DST_START_HOUR</code></td></tr><tr><td align="center">4</td><td align="center">7</td><td align="center">Res.</td></tr><tr><td align="center">4</td><td align="center">6:0</td><td align="center"><code>ID_UTC_DST_OFFSET</code></td></tr><tr><td align="center">5</td><td align="center">7</td><td align="center">Res.</td></tr><tr><td align="center">5</td><td align="center">6:4</td><td align="center"><code>ID_UTC_DST_STOP_WEEK_OF_MONTH</code></td></tr><tr><td align="center">5</td><td align="center">3:0</td><td align="center"><code>ID_UTC_DST_STOP_MONTH</code></td></tr><tr><td align="center">6</td><td align="center">7:5</td><td align="center"><code>ID_UTC_DST_STOP_WEEKDAY</code></td></tr><tr><td align="center">6</td><td align="center">4:0</td><td align="center"><code>ID_UTC_DST_STOP_HOUR</code></td></tr><tr><td align="center">7</td><td align="center">7:4</td><td align="center"><code>ID_UTC_DST_START_MINUTE</code></td></tr><tr><td align="center">7</td><td align="center">3:0</td><td align="center"><code>ID_UTC_DST_STOP_MINUTE</code></td></tr></tbody></table>
{% endtab %}

{% tab title="SET DEVICE TIME CONFIG" %}
Setzen der Gerätezeitkonfiguration.

**Beispiel**

```
0BB4520238590300h = Auto-Sync aktiv, UTC+1 im Winter, UTC+2 im Sommer, Umstellung am letzten Sonntag im März bzw. Oktober
```

<table><thead><tr><th width="183.8182373046875" align="center">Byte</th><th width="190.0908203125" align="center">Bit(s)</th><th align="center">Value</th></tr></thead><tbody><tr><td align="center">0</td><td align="center">7</td><td align="center">Res.</td></tr><tr><td align="center">0</td><td align="center">6:0</td><td align="center"><code>0x0B</code> (Command ID)</td></tr><tr><td align="center">1</td><td align="center">7</td><td align="center"><code>ID_AUTO_TIME_SYNC_EN</code></td></tr><tr><td align="center">1</td><td align="center">6:0</td><td align="center"><code>ID_UTC_OFFSET</code></td></tr><tr><td align="center">2</td><td align="center">7</td><td align="center">Res.</td></tr><tr><td align="center">2</td><td align="center">6:4</td><td align="center"><code>ID_UTC_DST_START_WEEK_OF_MONTH</code></td></tr><tr><td align="center">2</td><td align="center">3:0</td><td align="center"><code>ID_UTC_DST_START_MONTH</code></td></tr><tr><td align="center">3</td><td align="center">7:5</td><td align="center"><code>ID_UTC_DST_START_WEEKDAY</code></td></tr><tr><td align="center">3</td><td align="center">4:0</td><td align="center"><code>ID_UTC_DST_START_HOUR</code></td></tr><tr><td align="center">4</td><td align="center">7</td><td align="center">Res.</td></tr><tr><td align="center">4</td><td align="center">6:0</td><td align="center"><code>ID_UTC_DST_OFFSET</code></td></tr><tr><td align="center">5</td><td align="center">7</td><td align="center">Res.</td></tr><tr><td align="center">5</td><td align="center">6:4</td><td align="center"><code>ID_UTC_DST_STOP_WEEK_OF_MONTH</code>,</td></tr><tr><td align="center">5</td><td align="center">3:0</td><td align="center"><code>ID_UTC_DST_STOP_MONTH</code></td></tr><tr><td align="center">6</td><td align="center">7:5</td><td align="center"><code>ID_UTC_DST_STOP_WEEKDAY</code></td></tr><tr><td align="center">6</td><td align="center">4:0</td><td align="center"><code>ID_UTC_DST_STOP_HOUR</code></td></tr><tr><td align="center">7</td><td align="center">7:4</td><td align="center"><code>ID_UTC_DST_START_MINUTE</code></td></tr><tr><td align="center">7</td><td align="center">3:0</td><td align="center"><code>ID_UTC_DST_STOP_MINUTE</code></td></tr></tbody></table>
{% endtab %}
{% endtabs %}

<details>

<summary>ID_AUTO_TIME_SYNC_EN</summary>

|   Eigenschaft  |                                       Wert                                      |
| :------------: | :-----------------------------------------------------------------------------: |
|  Beschreibung  | Aktiviert oder deaktiviert die automatische Zeitsynchronisation mit dem Server. |
|      Größe     |                                      1 Bit                                      |
|  Wertebereich  |                                      0 - 1                                      |
|  Standardwert  |                                        1                                        |
| Interpretation |       <p><code>0</code> → deaktiviert</p><p><code>1</code> → aktiviert</p>      |
|   Persistent   |                                        Ja                                       |
|     Zugriff    |                                       r/w                                       |

</details>

<details>

<summary>ID_UTC_OFFSET</summary>

|   Eigenschaft  |                                Wert                                |
| :------------: | :----------------------------------------------------------------: |
|  Beschreibung  |             Abweichung der lokalen Winterzeit von UTC.             |
|      Größe     |                                7 Bit                               |
|  Wertebereich  |                               0 - 96                               |
|  Standardwert  |                                 52                                 |
| Interpretation | <p><code>y = x \* 0,25 - 12</code></p><p><code>\[y] = h</code></p> |
|   Persistent   |                                 Ja                                 |
|     Zugriff    |                                 r/w                                |

</details>

<details>

<summary>ID_UTC_DST_START_WEEK_OF_MONTH</summary>

|   Eigenschaft  |                                                                                            Wert                                                                                           |
| :------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
|  Beschreibung  |                                                            Angabe, an wievieltem Wochentag eines Monats die Sommerzeit beginnt.                                                           |
|      Größe     |                                                                                           3 Bit                                                                                           |
|  Wertebereich  |                                                                                           1 - 5                                                                                           |
|  Standardwert  |                                                                                             5                                                                                             |
| Interpretation | <p><code>1</code> → 1. Wochentag</p><p><code>2</code> → 2. Wochentag</p><p><code>3</code> → 3. Wochentag</p><p><code>4</code> → 4. Wochentag</p><p><code>5</code> → letzter Wochentag</p> |
|   Persistent   |                                                                                             Ja                                                                                            |
|     Zugriff    |                                                                                            r/w                                                                                            |

</details>

<details>

<summary>ID_UTC_DST_START_MONTH</summary>

|   Eigenschaft  |                              Wert                             |
| :------------: | :-----------------------------------------------------------: |
|  Beschreibung  |             Monat, in dem die Sommerzeit beginnt.             |
|      Größe     |                             4 Bit                             |
|  Wertebereich  |                             0 - 11                            |
|  Standardwert  |                               2                               |
| Interpretation | <p><code>y = x + 1</code></p><p><code>\[y] = Monat</code></p> |
|   Persistent   |                               Ja                              |
|     Zugriff    |                              r/w                              |

</details>

<details>

<summary>ID_UTC_DST_START_WEEKDAY</summary>

|   Eigenschaft  |                                                                                                              Wert                                                                                                             |
| :------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
|  Beschreibung  |                                                                                           Wochentag, an dem die Sommerzeit beginnt.                                                                                           |
|      Größe     |                                                                                                             3 Bit                                                                                                             |
|  Wertebereich  |                                                                                                             0 - 6                                                                                                             |
|  Standardwert  |                                                                                                               0                                                                                                               |
| Interpretation | <p><code>0</code> → Sonntag</p><p><code>1</code> → Montag</p><p><code>2</code> → Dienstag</p><p><code>3</code> → Mittwoch</p><p><code>4</code> → Donnerstag</p><p><code>5</code> → Freitag</p><p><code>6</code> → Samstag</p> |
|   Persistent   |                                                                                                               Ja                                                                                                              |
|     Zugriff    |                                                                                                              r/w                                                                                                              |

</details>

<details>

<summary>ID_UTC_DST_START_HOUR</summary>

|   Eigenschaft  |                          Wert                         |
| :------------: | :---------------------------------------------------: |
|  Beschreibung  |         Stunde, in der die Sommerzeit beginnt.        |
|      Größe     |                         5 Bit                         |
|  Wertebereich  |                         0 - 23                        |
|  Standardwert  |                           2                           |
| Interpretation | <p><code>y = x</code></p><p><code>\[y] = h</code></p> |
|   Persistent   |                           Ja                          |
|     Zugriff    |                          r/w                          |

</details>

<details>

<summary>ID_UTC_DST_OFFSET</summary>

|   Eigenschaft  |                                Wert                                |
| :------------: | :----------------------------------------------------------------: |
|  Beschreibung  |             Abweichung der lokalen Sommerzeit von UTC.             |
|      Größe     |                                7 Bit                               |
|  Wertebereich  |                               0 - 96                               |
|  Standardwert  |                                 56                                 |
| Interpretation | <p><code>y = x \* 0,25 - 12</code></p><p><code>\[y] = h</code></p> |
|   Persistent   |                                 Ja                                 |
|     Zugriff    |                                 r/w                                |

</details>

<details>

<summary>ID_UTC_DST_STOP_WEEK_OF_MONTH</summary>

|   Eigenschaft  |                                                                                            Wert                                                                                           |
| :------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
|  Beschreibung  |                                                             Angabe, an wievieltem Wochentag eines Monats die Sommerzeit endet.                                                            |
|      Größe     |                                                                                           3 Bit                                                                                           |
|  Wertebereich  |                                                                                           1 - 5                                                                                           |
|  Standardwert  |                                                                                             5                                                                                             |
| Interpretation | <p><code>1</code> → 1. Wochentag</p><p><code>2</code> → 2. Wochentag</p><p><code>3</code> → 3. Wochentag</p><p><code>4</code> → 4. Wochentag</p><p><code>5</code> → letzter Wochentag</p> |
|   Persistent   |                                                                                             Ja                                                                                            |
|     Zugriff    |                                                                                            r/w                                                                                            |

</details>

<details>

<summary>ID_UTC_DST_STOP_MONTH</summary>

|   Eigenschaft  |                              Wert                             |
| :------------: | :-----------------------------------------------------------: |
|  Beschreibung  |              Monat, in dem die Sommerzeit endet.              |
|      Größe     |                             4 Bit                             |
|  Wertebereich  |                             0 - 11                            |
|  Standardwert  |                               9                               |
| Interpretation | <p><code>y = x + 1</code></p><p><code>\[y] = Monat</code></p> |
|   Persistent   |                               Ja                              |
|     Zugriff    |                              r/w                              |

</details>

<details>

<summary>ID_UTC_DST_STOP_WEEKDAY</summary>

|   Eigenschaft  |                                                                                                              Wert                                                                                                             |
| :------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
|  Beschreibung  |                                                                                            Wochentag, an dem die Sommerzeit endet.                                                                                            |
|      Größe     |                                                                                                             3 Bit                                                                                                             |
|  Wertebereich  |                                                                                                             0 - 6                                                                                                             |
|  Standardwert  |                                                                                                               0                                                                                                               |
| Interpretation | <p><code>0</code> → Sonntag</p><p><code>1</code> → Montag</p><p><code>2</code> → Dienstag</p><p><code>3</code> → Mittwoch</p><p><code>4</code> → Donnerstag</p><p><code>5</code> → Freitag</p><p><code>6</code> → Samstag</p> |
|   Persistent   |                                                                                                               Ja                                                                                                              |
|     Zugriff    |                                                                                                              r/w                                                                                                              |

</details>

<details>

<summary>ID_UTC_DST_STOP_HOUR</summary>

|   Eigenschaft  |                          Wert                         |
| :------------: | :---------------------------------------------------: |
|  Beschreibung  |          Stunde, in der die Sommerzeit endet.         |
|      Größe     |                         5 Bit                         |
|  Wertebereich  |                         0 - 23                        |
|  Standardwert  |                           3                           |
| Interpretation | <p><code>y = x</code></p><p><code>\[y] = h</code></p> |
|   Persistent   |                           Ja                          |
|     Zugriff    |                          r/w                          |

</details>

<details>

<summary>ID_UTC_DST_START_MINUTE</summary>

|   Eigenschaft  |                             Wert                             |
| :------------: | :----------------------------------------------------------: |
|  Beschreibung  |            Minute, in der die Sommerzeit beginnt.            |
|      Größe     |                             4 Bit                            |
|  Wertebereich  |                            0 - 11                            |
|  Standardwert  |                               0                              |
| Interpretation | <p><code>y = x \* 5</code></p><p><code>\[y] = min</code></p> |
|   Persistent   |                              Ja                              |
|     Zugriff    |                              r/w                             |

</details>

<details>

<summary>ID_UTC_DST_STOP_MINUTE</summary>

|   Eigenschaft  |                             Wert                             |
| :------------: | :----------------------------------------------------------: |
|  Beschreibung  |             Minute, in der die Sommerzeit endet.             |
|      Größe     |                             4 Bit                            |
|  Wertebereich  |                            0 - 11                            |
|  Standardwert  |                               0                              |
| Interpretation | <p><code>y = x \* 5</code></p><p><code>\[y] = min</code></p> |
|   Persistent   |                              Ja                              |
|     Zugriff    |                              r/w                             |

</details>


---

# 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-etrv/kommunikationsprotokoll/3.-geratezeit.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.
