From c07ec534a798873f104b5d9d1082f0046acb3b4c Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Fri, 31 Oct 2025 12:33:38 -0700 Subject: [PATCH] Update mesh_bot.py --- mesh_bot.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mesh_bot.py b/mesh_bot.py index f1fcb82..cb7e5d2 100755 --- a/mesh_bot.py +++ b/mesh_bot.py @@ -412,6 +412,8 @@ def handle_echo(message, message_from_id, deviceID, isDM, channel_number): msg_to_echo = " ".join(new_words).strip() # Send echo to specified channel/device + logger.debug(f"System: Admin Echo to channel {target_channel} device {target_device} message: {msg_to_echo}") + time.sleep(splitDelay) # throttle for 2x send send_message(msg_to_echo, target_channel, 0, target_device) time.sleep(splitDelay) # throttle for 2x send return f"🐬echoed to channel {target_channel} device {target_device}"