From c671c007983bddc55667b14f5de1c2da58e70626 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Wed, 19 Jun 2024 14:50:32 -0700 Subject: [PATCH] Update mesh-bot.py --- mesh-bot.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/mesh-bot.py b/mesh-bot.py index 59a01cd..f9dad81 100644 --- a/mesh-bot.py +++ b/mesh-bot.py @@ -217,10 +217,9 @@ def get_node_location(number): if number == node['num']: if 'position' in node: for data in node['position']: - print (data['latitude']) - print (data['longitude']) + print (f"DEBUG: {data}") print (f"{log_timestamp()} System: Using location data for {number}") - position = [1,1] + position = [0,0] return position else: print (f"{log_timestamp()} System: No location data for {number}")