From 4ed764066e11417f884b89a66e48b472792aa510 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Wed, 22 Feb 2023 07:07:46 -0600 Subject: [PATCH 1/2] Add air quality specific protos --- meshtastic/module_config.proto | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/meshtastic/module_config.proto b/meshtastic/module_config.proto index 7fcc6a2..205fb89 100644 --- a/meshtastic/module_config.proto +++ b/meshtastic/module_config.proto @@ -373,6 +373,17 @@ message ModuleConfig { * display the results in Fahrenheit as a "user preference". */ bool environment_display_fahrenheit = 5; + + /* + * Enable/Disable the air quality enabled + */ + bool air_quality_enabled = 6; + + /* + * Interval in seconds of how often we should try to send our + * air quality metrics to the mesh + */ + uint32 air_quality_interval = 7; } /* From b3a23a7b8376410354649d86c6f726c2465057dc Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Wed, 22 Feb 2023 07:09:33 -0600 Subject: [PATCH 2/2] Word --- meshtastic/module_config.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshtastic/module_config.proto b/meshtastic/module_config.proto index 205fb89..7e71469 100644 --- a/meshtastic/module_config.proto +++ b/meshtastic/module_config.proto @@ -375,7 +375,7 @@ message ModuleConfig { bool environment_display_fahrenheit = 5; /* - * Enable/Disable the air quality enabled + * Enable/Disable the air quality metrics */ bool air_quality_enabled = 6;