From a726d6242e2e48ebac6efd7e5d0a37e3a38209f8 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Sun, 13 Aug 2023 08:10:24 -0500 Subject: [PATCH] Renamed to Detection Sensor --- meshtastic/admin.proto | 2 +- meshtastic/localonly.proto | 4 ++-- meshtastic/module_config.options | 4 ++-- meshtastic/module_config.proto | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/meshtastic/admin.proto b/meshtastic/admin.proto index e628757..1fcd78d 100644 --- a/meshtastic/admin.proto +++ b/meshtastic/admin.proto @@ -123,7 +123,7 @@ message AdminMessage { /* * TODO: REPLACE */ - DETECTION_CONFIG = 11; + DETECTIONSENSOR_CONFIG = 11; } /* diff --git a/meshtastic/localonly.proto b/meshtastic/localonly.proto index fed0cbf..bc46b1c 100644 --- a/meshtastic/localonly.proto +++ b/meshtastic/localonly.proto @@ -117,9 +117,9 @@ message LocalModuleConfig { ModuleConfig.AmbientLightingConfig ambient_lighting = 12; /* - * The part of the config that is specific to the Neighbor Info module + * The part of the config that is specific to the Detection Sensor module */ - ModuleConfig.DetectionConfig detection = 13; + ModuleConfig.DetectionSensorConfig detection_sensor = 13; /* * A version integer used to invalidate old save files when we make diff --git a/meshtastic/module_config.options b/meshtastic/module_config.options index 558a209..fdc46d5 100644 --- a/meshtastic/module_config.options +++ b/meshtastic/module_config.options @@ -24,5 +24,5 @@ *AmbientLightingConfig.green int_size:8 *AmbientLightingConfig.blue int_size:8 -*DetectionConfig.monitor_pin int_size:8 -*DetectionConfig.name max_size:20 \ No newline at end of file +*DetectionSensorConfig.monitor_pin int_size:8 +*DetectionSensorConfig.name max_size:20 \ No newline at end of file diff --git a/meshtastic/module_config.proto b/meshtastic/module_config.proto index e9ee092..3491ca6 100644 --- a/meshtastic/module_config.proto +++ b/meshtastic/module_config.proto @@ -109,9 +109,9 @@ message ModuleConfig { } /* - * Detection Module Config + * Detection Sensor Module Config */ - message DetectionConfig { + message DetectionSensorConfig { /* * Whether the Module is enabled */ @@ -657,7 +657,7 @@ message ModuleConfig { /* * TODO: REPLACE */ - DetectionConfig detection = 12; + DetectionSensorConfig detection_sensor = 12; } }