Renamed to Detection Sensor

This commit is contained in:
Ben Meadors 2023-08-13 08:10:24 -05:00
parent 3c5c9acf92
commit a726d6242e
4 changed files with 8 additions and 8 deletions

View file

@ -123,7 +123,7 @@ message AdminMessage {
/*
* TODO: REPLACE
*/
DETECTION_CONFIG = 11;
DETECTIONSENSOR_CONFIG = 11;
}
/*

View file

@ -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

View file

@ -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
*DetectionSensorConfig.monitor_pin int_size:8
*DetectionSensorConfig.name max_size:20

View file

@ -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;
}
}