From a3b3d4ea0e484ffe9c53bdde2870f9307ac21680 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Thu, 28 Nov 2024 23:28:42 -0800 Subject: [PATCH] Update mesh_bot.py --- mesh_bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mesh_bot.py b/mesh_bot.py index d7e924b..e1346ac 100755 --- a/mesh_bot.py +++ b/mesh_bot.py @@ -1072,8 +1072,8 @@ async def start_rx(): # Send the MOTD every day at 13:00 using send_message function to channel 2 on device 1 #schedule.every().day.at("13:00").do(lambda: send_message(MOTD, 2, 0, 1)) - # Send bbslink looking for peers every other day at 10:00 using send_message function to channel 0 on device 1 - #schedule.every(2).days.at("10:00").do(lambda: send_message("bbslink MeshBot looking for peers", 0, 0, 1)) + # Send bbslink looking for peers every other day at 10:00 using send_message function to channel 3 on device 1 + #schedule.every(2).days.at("10:00").do(lambda: send_message("bbslink MeshBot looking for peers", 3, 0, 1)) # logger.debug("System: Starting the broadcast scheduler")