From 6a8677c29371f80b236c1e0762660fce31439b24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20G=C3=B6ttgens?= Date: Sat, 20 Apr 2024 16:20:28 +0200 Subject: [PATCH] Support RCWL-9620 --- meshtastic/telemetry.proto | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/meshtastic/telemetry.proto b/meshtastic/telemetry.proto index ed48589..e472e3b 100644 --- a/meshtastic/telemetry.proto +++ b/meshtastic/telemetry.proto @@ -77,6 +77,11 @@ message EnvironmentMetrics { * Belongs to Air Quality but is not particle but VOC measurement. Other VOC values can also be put in here. */ uint32 iaq = 7; + + /* + * RCWL9620 Doppler Radar Distance Sensor, used for water level detection. Float value in mm. + */ + float water_level = 8; } /* @@ -294,4 +299,9 @@ enum TelemetrySensorType { * BMP085/BMP180 High accuracy temperature and pressure (older Version of BMP280) */ BMP085 = 15; + + /* + * RCWL-9620 Doppler Radar Distance Sensor, used for water level detection + */ + RCWL9620 = 16; }