Renamed to Detection Sensor

pull/381/head
Ben Meadors 2023-08-13 08:10:24 -05:00
rodzic 3c5c9acf92
commit a726d6242e
4 zmienionych plików z 8 dodań i 8 usunięć

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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