From e569b1f3ea04083096e74ef423b7a9b7a2fbb74c Mon Sep 17 00:00:00 2001 From: Stelios Mavridis Date: Sat, 18 Apr 2026 01:26:42 +0300 Subject: [PATCH] Added VL53L0X_config in SensorConfig. --- meshtastic/admin.proto | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/meshtastic/admin.proto b/meshtastic/admin.proto index ac29cc8..dd90d07 100644 --- a/meshtastic/admin.proto +++ b/meshtastic/admin.proto @@ -671,6 +671,11 @@ message SensorConfig { * SHTXX temperature and relative humidity sensor configuration */ SHTXX_config shtxx_config = 4; + + /* + * VL53L0X Distance Sensor configuration + */ + VL53L0X_config vl53l0x_config = 5; } message SCD4X_config { @@ -760,3 +765,10 @@ message SHTXX_config { */ optional uint32 set_accuracy = 1; } + +message VL53L0X_config { + /* + * Ranging mode (0 = default, 1 = long range, 2 = high speed,3 = high accuracy) + */ + optional uint32 ranging_mode = 1; +}