From 9aeb087f78bde4b3ba7afdc9ee96c0cea8f5d7db Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Wed, 19 Jun 2024 21:54:36 -0700 Subject: [PATCH] Update mesh-bot.py --- mesh-bot.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/mesh-bot.py b/mesh-bot.py index 0e57141..356947a 100644 --- a/mesh-bot.py +++ b/mesh-bot.py @@ -79,17 +79,14 @@ def auto_response(message,snr,rssi,hop,message_from_id): bot_response = "Last 5 nodes heard: " + str(get_node_list()) elif "whereami" in message.lower(): location = get_node_location(message_from_id) - print (f"Using Reported Location: {location}") where = where_am_i(str(location[0]),str(location[1])) bot_response = where elif "tide" in message.lower(): location = get_node_location(message_from_id) - print (f"Using Reported Location: {location}") tide = get_tide(str(location[0]),str(location[1])) bot_response = tide elif "moon" in message.lower(): location = get_node_location(message_from_id) - print (f"Using Reported Location: {location}") moon = get_moon(str(location[0]),str(location[1])) bot_response = moon else: