From 4a9300c504c0517d9f97473fa2eb97175ae2cf2f Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Sat, 30 Sep 2023 14:59:12 -0500 Subject: [PATCH] Documentation about sleepy tracker and sensor roles --- meshtastic/config.proto | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meshtastic/config.proto b/meshtastic/config.proto index 03838ea3..22355edf 100644 --- a/meshtastic/config.proto +++ b/meshtastic/config.proto @@ -52,12 +52,16 @@ message Config { /* * Tracker device role * Position Mesh packets will be prioritized higher and sent more frequently by default. + * When used in conjunction with power.is_power_saving = true, nodes will wake up, + * send position, and then sleep for position.position_broadcast_secs seconds. */ TRACKER = 5; /* * Sensor device role * Telemetry Mesh packets will be prioritized higher and sent more frequently by default. + * When used in conjunction with power.is_power_saving = true, nodes will wake up, + * send environment telemetry, and then sleep for telemetry.environment_update_interval seconds. */ SENSOR = 6; }