diff --git a/chester/catalog-applications/chester-meteo.md b/chester/catalog-applications/chester-meteo.md
new file mode 100644
index 0000000..276fe4a
--- /dev/null
+++ b/chester/catalog-applications/chester-meteo.md
@@ -0,0 +1,370 @@
+---
+slug: chester-meteo
+title: CHESTER Meteo
+---
+import Image from '@theme/IdealImage';
+
+# CHESTER Meteo
+
+This article describes the core functionality, hardware description, and example **JSON** message of the catalog application **CHESTER Meteo**.
+
+:::caution
+
+Some of the basics are not provided, as they are common for all **CHESTER** catalog applications. For example, see the article [**Platform Management**](../category/platform-management) on how to work with the interactive console.
+
+:::
+
+## Application Overview
+
+**CHESTER Meteo** is a wind and environmental sensor that samples, aggregates, and sends measured variables.
+
+## Application Variants
+
+### CHESTER Meteo
+
+The catalog application **CHESTER Meteo** measures:
+- Wind speed (m/s)
+- Wind direction (0-360°)
+- Rainfall (mm)
+- Atmospheric pressure (Pa)
+- Temperature (°C)
+- Humidity (%RH)
+
+The hardware of this application consists of the following ordering codes:
+
+* `CHESTER-M-BCGLS` - Standard mainboard
+* `CHESTER-X0B:A` - Input module (4 channels)
+* `CHESTER-S2` - External hygrometer
+* External barometer
+* `CHESTER-E1-LP` - Enclosure with SMA pigtail
+
+See [**Ordering Codes**](../ordering-codes.md) for more details.
+
+Firmware build shield options: `ctr_lte ctr_barometer_tag ctr_s2 ctr_x0_a`
+
+## Measurement and Behavior
+
+- All sensors are **sampled** with a configurable period (parameter `interval-sample`).
+- Samples are then **aggregated** in the configurable interval. Minimum, maximum, average, and median are computed from buffered samples for each sensor (parameter `interval-aggreg`).
+- Each aggregated values have its timestamps and are sent in a batch in a report interval period (parameter `interval-report`).
+
+### Wind speed
+
+Wind speed is measured continuously between samples (`interval-sample`). Every wind speed sample is an average wind speed between two samples. On every aggregation (`interval-aggreg`) these samples are aggregated, and minimum, maximum, average, and median are computed from buffered samples.
+
+With this continuous measurement, you can accurately get minimal, maximal, and average wind speed from every aggregation.
+
+## Default Configuration
+
+This is the default configuration (printed using the `app config show` command):
+
+```
+app config interval-sample 60
+app config interval-aggreg 300
+app config interval-report 1800
+```
+
+## Specific Commands
+
+:::info
+
+You can easily explore the whole command tree structure - start with the `help` command.
+
+:::
+
+:::caution
+
+To apply a new configuration, you need to call `config save`, which applies the new configuration parameters and reboots the device.
+
+:::
+
+Command to set **sample interval** in seconds:
+
+```
+app config interval-sample <1-86400>
+```
+
+Command to set **aggregate interval** in seconds:
+
+```
+app config interval-aggreg <1-86400>
+```
+
+Command to set **report interval** in seconds:
+
+```
+app config interval-report <30-86400>
+```
+
+## Firmware
+
+The latest firmware is available in Catalog Applications [Firmware chapter](index.md#application-firmware).
+
+## Example JSON Message
+
+In each structure with the current configuration, there are six aggregated values. Each aggregated value has its timestamp and is computed from multiple samples, and `min`, `max`, `avg`, and `mdn` values are calculated.
+
+Wind speed is in **meters per second**.
+
+Pressure is in **pascals**.
+
+```json
+{
+ "message": {
+ "version": 1,
+ "sequence": 1,
+ "timestamp": 1675784614
+ },
+ "attribute": {
+ "vendor_name": "HARDWARIO",
+ "product_name": "CHESTER-M",
+ "hw_variant": "CDGLS",
+ "hw_revision": "R3.2",
+ "fw_name": "CHESTER Meteo",
+ "fw_version": "v2.0.0",
+ "serial_number": "2159018267"
+ },
+ "system": {
+ "uptime": 361,
+ "voltage_rest": 3.6,
+ "voltage_load": 3.56,
+ "current_load": 35
+ },
+ "network": {
+ "imei": 351358815180770,
+ "imsi": 901288910018982,
+ "parameter": {
+ "eest": 7,
+ "ecl": 0,
+ "rsrp": -83,
+ "rsrq": -4,
+ "snr": 14,
+ "plmn": 23003,
+ "cid": 939040,
+ "band": 20,
+ "earfcn": 6447
+ }
+ },
+ "thermometer": {
+ "temperature": 21.37
+ },
+ "accelerometer": {
+ "acceleration_x": -0.23,
+ "acceleration_y": 0.07,
+ "acceleration_z": 9.49,
+ "orientation": 2
+ },
+ "weather_station": {
+ "wind_speed": {
+ "measurements": [
+ {
+ "timestamp": 1675784338,
+ "min": 0,
+ "max": 4,
+ "avg": 2.78,
+ "mdn": 2.8
+ },
+ {
+ "timestamp": 1675784398,
+ "min": 3.91,
+ "max": 4.13,
+ "avg": 4,
+ "mdn": 4
+ },
+ {
+ "timestamp": 1675784458,
+ "min": 3.86,
+ "max": 4.13,
+ "avg": 4.03,
+ "mdn": 4
+ },
+ {
+ "timestamp": 1675784518,
+ "min": 3.86,
+ "max": 4.13,
+ "avg": 4.03,
+ "mdn": 4
+ },
+ {
+ "timestamp": 1675784578,
+ "min": 4,
+ "max": 4.26,
+ "avg": 4.13,
+ "mdn": 4.13
+ }
+ ]
+ },
+ "wind_direction": {
+ "measurements": [
+ {
+ "timestamp": 1675784338,
+ "value": 0
+ },
+ {
+ "timestamp": 1675784398,
+ "value": 0
+ },
+ {
+ "timestamp": 1675784458,
+ "value": 0
+ },
+ {
+ "timestamp": 1675784518,
+ "value": 7
+ },
+ {
+ "timestamp": 1675784578,
+ "value": 45
+ }
+ ]
+ },
+ "rainfall": {
+ "measurements": [
+ {
+ "timestamp": 1675784338,
+ "value": 0
+ },
+ {
+ "timestamp": 1675784398,
+ "value": 0
+ },
+ {
+ "timestamp": 1675784458,
+ "value": 0
+ },
+ {
+ "timestamp": 1675784518,
+ "value": 2.79
+ },
+ {
+ "timestamp": 1675784578,
+ "value": 2.79
+ }
+ ]
+ }
+ },
+ "barometer":
+ {
+ "pressure": {
+ "measurements": [
+ {
+ "timestamp": 1675784338,
+ "min": 98070,
+ "max": 98075,
+ "avg": 98072,
+ "mdn": 98073
+ },
+ {
+ "timestamp": 1675784398,
+ "min": 98071,
+ "max": 98078,
+ "avg": 98072,
+ "mdn": 98074
+ },
+ {
+ "timestamp": 1675784458,
+ "min": 98070,
+ "max": 98070,
+ "avg": 98070,
+ "mdn": 98070
+ },
+ {
+ "timestamp": 1675784518,
+ "min": 98071,
+ "max": 98078,
+ "avg": 98072,
+ "mdn": 98074
+ },
+ {
+ "timestamp": 1675784578,
+ "min": 98070,
+ "max": 98075,
+ "avg": 98072,
+ "mdn": 98073
+ }
+ ]
+ },
+ },
+
+ "hygrometer": {
+ "temperature": {
+ "measurements": [
+ {
+ "timestamp": 1675784338,
+ "min": 21.53,
+ "max": 21.67,
+ "avg": 21.59,
+ "mdn": 21.6
+ },
+ {
+ "timestamp": 1675784398,
+ "min": 21.44,
+ "max": 21.56,
+ "avg": 21.51,
+ "mdn": 21.53
+ },
+ {
+ "timestamp": 1675784458,
+ "min": 21.47,
+ "max": 21.67,
+ "avg": 21.53,
+ "mdn": 21.52
+ },
+ {
+ "timestamp": 1675784518,
+ "min": 21.43,
+ "max": 21.58,
+ "avg": 21.49,
+ "mdn": 21.5
+ },
+ {
+ "timestamp": 1675784578,
+ "min": 21.39,
+ "max": 21.57,
+ "avg": 21.47,
+ "mdn": 21.44
+ }
+ ]
+ },
+ "humidity": {
+ "measurements": [
+ {
+ "timestamp": 1675784338,
+ "min": 38.86,
+ "max": 39.04,
+ "avg": 38.95,
+ "mdn": 38.95
+ },
+ {
+ "timestamp": 1675784398,
+ "min": 38.93,
+ "max": 39.14,
+ "avg": 39.04,
+ "mdn": 39.07
+ },
+ {
+ "timestamp": 1675784458,
+ "min": 38.85,
+ "max": 39.15,
+ "avg": 39.02,
+ "mdn": 39.02
+ },
+ {
+ "timestamp": 1675784518,
+ "min": 38.89,
+ "max": 39.15,
+ "avg": 39.08,
+ "mdn": 39.08
+ },
+ {
+ "timestamp": 1675784578,
+ "min": 38.88,
+ "max": 39.11,
+ "avg": 39.02,
+ "mdn": 39.03
+ }
+ ]
+ }
+ }
+}
+```
diff --git a/chester/catalog-applications/index.md b/chester/catalog-applications/index.md
index 96152c2..4c50d8f 100644
--- a/chester/catalog-applications/index.md
+++ b/chester/catalog-applications/index.md
@@ -16,14 +16,15 @@ The **catalog applications** also serve as a great starting point for your own f
The table below provides an overview of the available **catalog applications**:
-| Application name | Application goal | Application features |
-| :------------------------------------------ | :-------------------------------------------------------------------- | :------------------------------------------------------------------------- |
-| [**CHESTER Clime**](./chester-clime.md) | Temperature and humidity sensing, IAQ monitoring, DS18B20 transmitter | ✅ Low-power
✅ Outdoor
✅ LTE-M/NB-IoT
LoRaWAN on request |
-| [**CHESTER Push**](./chester-push.md) | Event alerting on 4x push button with optical and acoustic feedback | ✅ Low-power (*)
❌ Outdoor
✅ LTE-M/NB-IoT
LoRaWAN on request |
-| **CHESTER Counter** | Pulse counting from energy meters using NPN/dry contact (4 channels) | ✅ Low-power
✅ Outdoor
✅ LTE-M/NB-IoT
LoRaWAN on request |
-| [**CHESTER Input**](./chester-input.md) | Transmitter for NPN/PNP/dry contact/0-10 V/4-20 mA (4 channels) | ✅ Low-power (*)
❌ Outdoor
✅ LTE-M/NB-IoT
LoRaWAN on request |
-| [**CHESTER Current**](./chester-current.md) | Non-invasive consumption sensing for AC/DC currents (4 channels) | ✅ Low-power
❌ Outdoor
✅ LTE-M/NB-IoT
LoRaWAN on request |
-| **CHESTER Scale** | Ultra-precise weight scale monitoring using load cells (2 channels) | ✅ Low-power
✅ Outdoor
✅ LTE-M/NB-IoT
LoRaWAN on request |
+| Application name | Application goal | Application features |
+| :---------------------------------------- | :-------------------------------------------------------------------- | :------------------------------------------------------------------------- |
+| [**CHESTER Clime**](chester-clime.md) | Temperature and humidity sensing, IAQ monitoring, DS18B20 transmitter | ✅ Low-power
✅ Outdoor
✅ LTE-M/NB-IoT
LoRaWAN on request |
+| [**CHESTER Push**](chester-push.md) | Event alerting on 4x push button with optical and acoustic feedback | ✅ Low-power (*)
❌ Outdoor
✅ LTE-M/NB-IoT
LoRaWAN on request |
+| **CHESTER Counter** | Pulse counting from energy meters using NPN/dry contact (4 channels) | ✅ Low-power
✅ Outdoor
✅ LTE-M/NB-IoT
LoRaWAN on request |
+| [**CHESTER Input**](chester-input.md) | Transmitter for NPN/PNP/dry contact/0-10 V/4-20 mA (4 channels) | ✅ Low-power (*)
❌ Outdoor
✅ LTE-M/NB-IoT
LoRaWAN on request |
+| [**CHESTER Current**](chester-current.md) | Non-invasive consumption sensing for AC/DC currents (4 channels) | ✅ Low-power
❌ Outdoor
✅ LTE-M/NB-IoT
LoRaWAN on request |
+| **CHESTER Scale** | Ultra-precise weight scale monitoring using load cells (2 channels) | ✅ Low-power
✅ Outdoor
✅ LTE-M/NB-IoT
LoRaWAN on request |
+| [**CHESTER Meteo**](chester-meteo.md) | Wind, pressure, temperature and humidity measurement | ✅ Low-power
✅ Outdoor
✅ LTE-M/NB-IoT
LoRaWAN on request |
\* The specific hardware or firmware variants may need an external power supply.
@@ -39,26 +40,28 @@ When upgrading firmware from **v1.x.x** to version **v2.0.0 and newer** - it is
:::
-| Application name | Version | Identifier | Build date | Remark |
-| :-------------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------- | :-----------------------------------------------: | :--------: | :--------------------------------------- |
-| [**CHESTER Clime**](chester-clime.md#chester-clime-1) | [**v2.0.0**](https://firmware.hardwario.com/chester/d42e6e22645a4d3d810e2c56bee4cf5b) [⚠️](#configuration-backup "Configuration backup") | `d42e6e22645a4d3d810e2c56bee4cf5b` | 2023-01-25 | |
-| [**CHESTER Clime Z**](chester-clime.md#chester-clime-z) | [**v2.0.0**](https://firmware.hardwario.com/chester/2c88782c8dfb4c7e97c9d28cdde089b3) [⚠️](#configuration-backup "Configuration backup") | `2c88782c8dfb4c7e97c9d28cdde089b3` | 2023-01-25 | With support for **CHESTER-Z** |
-| [**CHESTER Clime IAQ**](chester-clime.md#chester-clime-iaq) | [**v2.0.0**](https://firmware.hardwario.com/chester/00c9b13c5e6e40a0ae9afc4b0ce5a958) [⚠️](#configuration-backup "Configuration backup") | `00c9b13c5e6e40a0ae9afc4b0ce5a958` | 2023-01-25 | |
-| [**CHESTER Clime 1W**](chester-clime.md#chester-clime-1w) | [**v2.0.0**](https://firmware.hardwario.com/chester/bd064ecf0eb34a89bcc9da134e5af6d4) [⚠️](#configuration-backup "Configuration backup") | `bd064ecf0eb34a89bcc9da134e5af6d4` | 2023-01-25 | |
-| [**CHESTER Clime 1WH**](chester-clime.md#chester-clime-1wh) | [**v2.0.1**](https://firmware.hardwario.com/chester/0c00c336a4c64c079e93dd320da251bf) [⚠️](#configuration-backup "Configuration backup") | `0c00c336a4c64c079e93dd320da251bf` | 2023-02-09 | With support for **CHESTER-S2** + 1-Wire |
-| [**CHESTER Clime RTD**](chester-clime.md#chester-clime-rtd) | [**v2.0.0**](https://firmware.hardwario.com/chester/18234052bd6a4782a4daedb9ebe5cd4b) [⚠️](#configuration-backup "Configuration backup") | `18234052bd6a4782a4daedb9ebe5cd4b` | 2023-01-25 | |
-| [**CHESTER Push**](chester-push.md#hardware-description) | [**v2.0.0**](https://firmware.hardwario.com/chester/7083176e06b54d7e9390ee5de9de5443) [⚠️](#configuration-backup "Configuration backup") | `7083176e06b54d7e9390ee5de9de5443` | 2023-01-25 | |
-| [**CHESTER Push FM**](chester-push.md#hardware-description) | [**v2.0.0**](https://firmware.hardwario.com/chester/44ead7674d5f4799a780c2842adafd35) [⚠️](#configuration-backup "Configuration backup") | `44ead7674d5f4799a780c2842adafd35` | 2023-01-25 | |
-| **CHESTER Counter** | [**v2.0.0**](https://firmware.hardwario.com/chester/2d3b8fe5de9345edbcc81f680fc7964c) [⚠️](#configuration-backup "Configuration backup") | `2d3b8fe5de9345edbcc81f680fc7964c` | 2023-01-25 | |
-| **CHESTER Counter Z** | [**v2.0.0**](https://firmware.hardwario.com/chester/b32607b59e4f4d218a7651f1ef5676b3) [⚠️](#configuration-backup "Configuration backup") | `b32607b59e4f4d218a7651f1ef5676b3` | 2023-01-25 | With support for **CHESTER-Z** |
-| [**CHESTER Input**](chester-input.md#chester-input-1) | [**v2.0.0**](https://firmware.hardwario.com/chester/32b1e13c245745cf916f2d7910aa5345) [⚠️](#configuration-backup "Configuration backup") | `32b1e13c245745cf916f2d7910aa5345` | 2023-01-25 | |
-| [**CHESTER Input Z**](chester-input.md#chester-input-z) | [**v2.0.0**](https://firmware.hardwario.com/chester/ee926e13543340ec909f3874ceeb46b4) [⚠️](#configuration-backup "Configuration backup") | `ee926e13543340ec909f3874ceeb46b4` | 2023-01-25 | With support for **CHESTER-Z** |
-| [**CHESTER Input ZH**](chester-input.md#chester-input-zh) | [**v2.0.0**](https://firmware.hardwario.com/chester/ad764d50ec3b407e8007b6dea50d2d37) [⚠️](#configuration-backup "Configuration backup") | `ad764d50ec3b407e8007b6dea50d2d37` | 2023-01-25 | With support for **CHESTER-Z**, **S2** |
-| [**CHESTER Current**](chester-current.md#chester-current-1) | [**v2.0.0**](https://firmware.hardwario.com/chester/e0cc5050ae5d4a7cb3943b1dc7ce4fe9) [⚠️](#configuration-backup "Configuration backup") | `e0cc5050ae5d4a7cb3943b1dc7ce4fe9` | 2023-01-25 | |
-| [**CHESTER Current Z**](chester-current.md#chester-current-z) | [**v2.0.0**](https://firmware.hardwario.com/chester/81b3a7d960f2405b88d0d6825de6e235) [⚠️](#configuration-backup "Configuration backup") | `81b3a7d960f2405b88d0d6825de6e235` | 2023-01-25 | With support for **CHESTER-Z** |
-| [**CHESTER Current 1W**](chester-current.md#chester-current-1w) | [**v2.0.0**](https://firmware.hardwario.com/chester/4e6bb4f139464c7c89237faefb1b440d) [⚠️](#configuration-backup "Configuration backup") | `4e6bb4f139464c7c89237faefb1b440d` | 2023-01-25 | |
-| **CHESTER Scale** | [**v2.0.0**](https://firmware.hardwario.com/chester/07dc674f5fa14f5ebb496cfb620793e6) [⚠️](#configuration-backup "Configuration backup") | `07dc674f5fa14f5ebb496cfb620793e6` | 2023-01-25 | |
-| **CHESTER Scale Z** | [**v2.0.0**](https://firmware.hardwario.com/chester/2470ffa39afb42b98bea7c4ca366c63e) [⚠️](#configuration-backup "Configuration backup") | `2470ffa39afb42b98bea7c4ca366c63e` | 2023-01-25 | With support for **CHESTER-Z** |
+
+| Application name | Version | Identifier | Build date | Remark |
+| :-------------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------- | :-----------------------------------------------: | :--------: | :------------------------------------- |
+| [**CHESTER Clime**](chester-clime.md#chester-clime-1) | [**v2.0.0**](https://firmware.hardwario.com/chester/d42e6e22645a4d3d810e2c56bee4cf5b) [⚠️](#configuration-backup "Configuration backup") | `d42e6e22645a4d3d810e2c56bee4cf5b` | 2023-01-25 | |
+| [**CHESTER Clime Z**](chester-clime.md#chester-clime-z) | [**v2.0.0**](https://firmware.hardwario.com/chester/2c88782c8dfb4c7e97c9d28cdde089b3) [⚠️](#configuration-backup "Configuration backup") | `2c88782c8dfb4c7e97c9d28cdde089b3` | 2023-01-25 | Support for **CHESTER-Z** |
+| [**CHESTER Clime IAQ**](chester-clime.md#chester-clime-iaq) | [**v2.0.0**](https://firmware.hardwario.com/chester/00c9b13c5e6e40a0ae9afc4b0ce5a958) [⚠️](#configuration-backup "Configuration backup") | `00c9b13c5e6e40a0ae9afc4b0ce5a958` | 2023-01-25 | |
+| [**CHESTER Clime 1W**](chester-clime.md#chester-clime-1w) | [**v2.0.0**](https://firmware.hardwario.com/chester/bd064ecf0eb34a89bcc9da134e5af6d4) [⚠️](#configuration-backup "Configuration backup") | `bd064ecf0eb34a89bcc9da134e5af6d4` | 2023-01-25 | |
+| [**CHESTER Clime 1WH**](chester-clime.md#chester-clime-1wh) | [**v2.0.1**](https://firmware.hardwario.com/chester/0c00c336a4c64c079e93dd320da251bf) [⚠️](#configuration-backup "Configuration backup") | `0c00c336a4c64c079e93dd320da251bf` | 2023-02-09 | Support for **CHESTER-S2**, **1-Wire** |
+| [**CHESTER Clime RTD**](chester-clime.md#chester-clime-rtd) | [**v2.0.0**](https://firmware.hardwario.com/chester/18234052bd6a4782a4daedb9ebe5cd4b) [⚠️](#configuration-backup "Configuration backup") | `18234052bd6a4782a4daedb9ebe5cd4b` | 2023-01-25 | |
+| [**CHESTER Push**](chester-push.md#hardware-description) | [**v2.0.0**](https://firmware.hardwario.com/chester/7083176e06b54d7e9390ee5de9de5443) [⚠️](#configuration-backup "Configuration backup") | `7083176e06b54d7e9390ee5de9de5443` | 2023-01-25 | |
+| [**CHESTER Push FM**](chester-push.md#hardware-description) | [**v2.0.0**](https://firmware.hardwario.com/chester/44ead7674d5f4799a780c2842adafd35) [⚠️](#configuration-backup "Configuration backup") | `44ead7674d5f4799a780c2842adafd35` | 2023-01-25 | |
+| **CHESTER Counter** | [**v2.0.0**](https://firmware.hardwario.com/chester/2d3b8fe5de9345edbcc81f680fc7964c) [⚠️](#configuration-backup "Configuration backup") | `2d3b8fe5de9345edbcc81f680fc7964c` | 2023-01-25 | |
+| **CHESTER Counter Z** | [**v2.0.0**](https://firmware.hardwario.com/chester/b32607b59e4f4d218a7651f1ef5676b3) [⚠️](#configuration-backup "Configuration backup") | `b32607b59e4f4d218a7651f1ef5676b3` | 2023-01-25 | Support for **CHESTER-Z** |
+| [**CHESTER Input**](chester-input.md#chester-input-1) | [**v2.0.0**](https://firmware.hardwario.com/chester/32b1e13c245745cf916f2d7910aa5345) [⚠️](#configuration-backup "Configuration backup") | `32b1e13c245745cf916f2d7910aa5345` | 2023-01-25 | |
+| [**CHESTER Input Z**](chester-input.md#chester-input-z) | [**v2.0.0**](https://firmware.hardwario.com/chester/ee926e13543340ec909f3874ceeb46b4) [⚠️](#configuration-backup "Configuration backup") | `ee926e13543340ec909f3874ceeb46b4` | 2023-01-25 | Support for **CHESTER-Z** |
+| [**CHESTER Input ZH**](chester-input.md#chester-input-zh) | [**v2.0.0**](https://firmware.hardwario.com/chester/ad764d50ec3b407e8007b6dea50d2d37) [⚠️](#configuration-backup "Configuration backup") | `ad764d50ec3b407e8007b6dea50d2d37` | 2023-01-25 | Support for **CHESTER-Z**, **S2** |
+| [**CHESTER Current**](chester-current.md#chester-current-1) | [**v2.0.0**](https://firmware.hardwario.com/chester/e0cc5050ae5d4a7cb3943b1dc7ce4fe9) [⚠️](#configuration-backup "Configuration backup") | `e0cc5050ae5d4a7cb3943b1dc7ce4fe9` | 2023-01-25 | |
+| [**CHESTER Current Z**](chester-current.md#chester-current-z) | [**v2.0.0**](https://firmware.hardwario.com/chester/81b3a7d960f2405b88d0d6825de6e235) [⚠️](#configuration-backup "Configuration backup") | `81b3a7d960f2405b88d0d6825de6e235` | 2023-01-25 | Support for **CHESTER-Z** |
+| [**CHESTER Current 1W**](chester-current.md#chester-current-1w) | [**v2.0.0**](https://firmware.hardwario.com/chester/4e6bb4f139464c7c89237faefb1b440d) [⚠️](#configuration-backup "Configuration backup") | `4e6bb4f139464c7c89237faefb1b440d` | 2023-01-25 | |
+| **CHESTER Scale** | [**v2.0.0**](https://firmware.hardwario.com/chester/07dc674f5fa14f5ebb496cfb620793e6) [⚠️](#configuration-backup "Configuration backup") | `07dc674f5fa14f5ebb496cfb620793e6` | 2023-01-25 | |
+| **CHESTER Scale Z** | [**v2.0.0**](https://firmware.hardwario.com/chester/2470ffa39afb42b98bea7c4ca366c63e) [⚠️](#configuration-backup "Configuration backup") | `2470ffa39afb42b98bea7c4ca366c63e` | 2023-01-25 | Support for **CHESTER-Z** |
+| [**CHESTER Meteo**](chester-meteo.md) | | | | |
## Configuration backup v1.x.x → v2.x.x {#configuration-backup}
diff --git a/sidebars-chester.js b/sidebars-chester.js
index d76c9b0..ccdfe05 100644
--- a/sidebars-chester.js
+++ b/sidebars-chester.js
@@ -28,7 +28,8 @@ const sidebars = {
'catalog-applications/chester-clime',
'catalog-applications/chester-current',
'catalog-applications/chester-input',
- 'catalog-applications/chester-push'
+ 'catalog-applications/chester-push',
+ 'catalog-applications/chester-meteo'
],
},
{