From 30eb05a8a97a216d602e50b3c38d6086ba52cd5d Mon Sep 17 00:00:00 2001 From: Jonathan Bennett Date: Wed, 4 Sep 2024 14:30:54 -0500 Subject: [PATCH] Adds OKToMqtt bool to data --- meshtastic/mesh.proto | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/meshtastic/mesh.proto b/meshtastic/mesh.proto index 23d2b9c..4dfdac0 100644 --- a/meshtastic/mesh.proto +++ b/meshtastic/mesh.proto @@ -888,6 +888,11 @@ message Data { * a message a heart or poop emoji. */ fixed32 emoji = 8; + + /* + * Defaults to false. Indicates the user approves the packet being uploaded to MQTT. + */ + bool OKToMqtt = 9; } /* @@ -1889,4 +1894,4 @@ message ChunkedPayloadResponse { */ resend_chunks resend_chunks = 4; } -} \ No newline at end of file +}