Merge pull request #657 from meshtastic/fifieldt-patch-1

Add RAK12035VB Soil Moisture Sensor
This commit is contained in:
Ben Meadors 2025-03-08 06:14:53 -06:00 committed by GitHub
commit 035a8017b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 16 additions and 1 deletions

View file

@ -3,6 +3,7 @@
*EnvironmentMetrics.iaq int_size:16
*EnvironmentMetrics.wind_direction int_size:16
*EnvironmentMetrics.soil_moisture int_size:8
*LocalStats.num_online_nodes int_size:16
*LocalStats.num_total_nodes int_size:16

View file

@ -143,7 +143,16 @@ message EnvironmentMetrics {
* Rainfall in the last 24 hours in mm
*/
optional float rainfall_24h = 20;
/*
* Soil moisture measured (% 1-100)
*/
optional uint32 soil_moisture = 21;
/*
* Soil temperature measured (*C)
*/
optional float soil_temperature = 22;
}
/*
@ -561,6 +570,11 @@ enum TelemetrySensorType {
* Infineon DPS310 High accuracy pressure and temperature
*/
DPS310 = 36;
/*
* RAKWireless RAK12035 Soil Moisture Sensor Module
*/
RAK12035 = 37;
}
/*