> For the complete documentation index, see [llms.txt](https://docs.mclimate.eu/mclimate-lorawan-devices/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.mclimate.eu/mclimate-lorawan-devices/devices/mclimate-co2-display/co2-display-device-communication-protocol/hiding-data-from-the-display.md).

# Hiding data from the display

<figure><img src="/files/mJmBMgkwq7ELWR8CShhc" alt="" width="375"><figcaption></figcaption></figure>

## **Hiding/showing specific readings on the display**

### Measured temperature

{% tabs %}
{% tab title="SET" %}

<table data-header-hidden><thead><tr><th width="146"></th><th></th></tr></thead><tbody><tr><td><strong>Byte index</strong></td><td><strong>Hex value – Meaning</strong></td></tr><tr><td>0</td><td>40 – The command code.</td></tr><tr><td>1</td><td><p>00 – Hide the measured temperature;</p><p>01 – Show the measured temperature. <strong>Default state</strong>.</p></td></tr></tbody></table>

**Example downlink:** 0x4000 – Hide the measured temperature.
{% endtab %}

{% tab title="GET" %}

<table data-header-hidden><thead><tr><th width="143.99999999999997"></th><th width="193"></th><th></th></tr></thead><tbody><tr><td><strong>Byte index</strong></td><td><strong>Sent request</strong></td><td><strong>Received response</strong></td></tr><tr><td>0</td><td>41 – Command code</td><td>41 – Command code</td></tr><tr><td>1</td><td> </td><td>00 - The measured temperature is hidden;<br>01 - The measured temperature is shown.</td></tr></tbody></table>

**Example downlink sent by the server:** 0x41;

**Example command response:** 0x4100 – The measured temperature is hidden.
{% endtab %}
{% endtabs %}

### Measured humidity

{% tabs %}
{% tab title="SET" %}

<table data-header-hidden><thead><tr><th width="137"></th><th></th></tr></thead><tbody><tr><td><strong>Byte index</strong></td><td><strong>Hex value – Meaning</strong></td></tr><tr><td>0</td><td>42 – The command code.</td></tr><tr><td>1</td><td><p>00 – Hide humidity;</p><p>01 – Show humidity. <strong>Default state.</strong></p></td></tr></tbody></table>

**Example downlink:** 0x4200 – Hide the measured humidity
{% endtab %}

{% tab title="GET" %}

<table data-header-hidden><thead><tr><th width="143.99999999999997"></th><th width="193"></th><th></th></tr></thead><tbody><tr><td><strong>Byte index</strong></td><td><strong>Sent request</strong></td><td><strong>Received response</strong></td></tr><tr><td>0</td><td>43 – Command code</td><td>43 – Command code</td></tr><tr><td>1</td><td> </td><td>00 - The measured humidity is hidden;<br>01 - The measured humidity is shown.</td></tr></tbody></table>

**Example downlink sent by the server**: 0x43;

**Example command response**: 0x4300 – The humidity is hidden.
{% endtab %}
{% endtabs %}

### Measured light intensity

{% tabs %}
{% tab title="SET" %}

<table data-header-hidden><thead><tr><th width="131"></th><th></th></tr></thead><tbody><tr><td><strong>Byte index</strong></td><td><strong>Hex value – Meaning</strong></td></tr><tr><td>0</td><td>44 – The command code.</td></tr><tr><td>1</td><td><p>00 – Hide light intensity;</p><p>01 – Show light intensity. <strong>Default state.</strong></p></td></tr></tbody></table>

**Example downlink:** 0x4400 – Hide the light intensity.
{% endtab %}

{% tab title="GET" %}

<table data-header-hidden><thead><tr><th width="143.99999999999997"></th><th width="193"></th><th></th></tr></thead><tbody><tr><td><strong>Byte index</strong></td><td><strong>Sent request</strong></td><td><strong>Received response</strong></td></tr><tr><td>0</td><td>45 – Command code</td><td>45 – Command code</td></tr><tr><td>1</td><td> </td><td>00 - The light intensity is hidden;<br>01 - The light intensity is shown.</td></tr></tbody></table>

**Example downlink sent by the server:** 0x45;

**Example command response:** 0x4500 – The light intensity is hidden.
{% endtab %}
{% endtabs %}

{% hint style="info" %}
By **Default** all 3 metrics are displayed at the same time (temperature, humidity, and light intensity).
{% endhint %}

### CO2 related images to be shown on the display

You can set how the CO2 measurement is represented on the display. You can select to either see a chart, a value and/or an emoji.

{% tabs %}
{% tab title="SET" %}
Select one of the 3 options for displaying the CO2 level.

<table data-header-hidden><thead><tr><th width="97"></th><th width="85"></th><th></th></tr></thead><tbody><tr><td><strong>Byte index</strong></td><td><strong>Bit index</strong></td><td><strong>Hex value – Meaning</strong></td></tr><tr><td>0</td><td>-</td><td>82 – The command code.</td></tr><tr><td>1</td><td>7:3</td><td>Reserved.</td></tr><tr><td></td><td>2</td><td>1 to show the CO2 chart on the display. 0 to hide it.</td></tr><tr><td></td><td>1</td><td>1 to show the CO2 value on the display with digits. 0 to hide it.</td></tr><tr><td></td><td>0</td><td>1 to show the CO2 emoji and level on the display. 0 to hide it.</td></tr></tbody></table>

**Example command:** 0x8203 – when we separate the command code value we get 0x**03.** Converting it to binary we get 00000011. Utilizing the last 3 bits we have 011, thus the value will be displayed in digits together with an emoji.
{% endtab %}

{% tab title="GET" %}
Obtain the currently selected option for displaying the CO2 level.

By default, all 3 options are shown.

<table data-header-hidden><thead><tr><th width="95"></th><th width="77"></th><th></th></tr></thead><tbody><tr><td><strong>Byte index</strong></td><td><strong>Bit index</strong></td><td><strong>Hex value – Meaning</strong></td></tr><tr><td>0</td><td>-</td><td>83 – The command code.</td></tr><tr><td>1</td><td>7:3</td><td>Reserved.</td></tr><tr><td></td><td>2</td><td>1 if the CO2 chart is shown on the display. 0 if hidden.</td></tr><tr><td></td><td>1</td><td>1 if the CO2 digital value is shown on the display. 0 if hidden.</td></tr><tr><td></td><td>0</td><td>1 if the CO2 emoji is shown on the display. 0 if hidden.<br><strong>Default value in HEX - 07</strong></td></tr></tbody></table>

**Example command:** 0x8304 – when we separate the command code value we get 0x**04.** Converting it to binary we get 00000100. Utilizing the last 3 bits we have 100, thus only the CO2 chart will be shown on the display.
{% endtab %}
{% endtabs %}

{% hint style="info" %}
The **Default** all 3 metrics are displayed at the same time (CO2 chart, CO2 value, and CO2 emoji).
{% endhint %}


---

# 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.mclimate.eu/mclimate-lorawan-devices/devices/mclimate-co2-display/co2-display-device-communication-protocol/hiding-data-from-the-display.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.
