From 583784692c02b996bd89be3d7e9c3d305a67ba0a Mon Sep 17 00:00:00 2001 From: Riley Nielsen Date: Mon, 2 Sep 2024 11:19:52 -0700 Subject: [PATCH] Add CO2, SCD4X --- meshtastic/telemetry.proto | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/meshtastic/telemetry.proto b/meshtastic/telemetry.proto index d4e80a8..72bb418 100644 --- a/meshtastic/telemetry.proto +++ b/meshtastic/telemetry.proto @@ -128,6 +128,11 @@ message EnvironmentMetrics { * Wind lull in m/s */ optional float wind_lull = 17; + + /* + * CO2 measurement in ppm + */ + optional uint32 co2 = 18; } /* @@ -463,6 +468,11 @@ enum TelemetrySensorType { * Custom I2C sensor implementation based on https://github.com/meshtastic/i2c-sensor */ CUSTOM_SENSOR = 29; + + /* + * SCD40/SCD41 CO2, humidity, temperature sensor + */ + SCD4X = 30; } /*