hi all, i having trouble getting correct distance between coordinates. i using 1sheeld coordinates phone , adafruit breakout (gps module) coordinates of device. when upload code , turn on serial monitor gives me output of around 5,000 same value if 1 of coordinates (0,0). despite me testing code , knowing individually 1sheeld , gps module give correct coordinates, when put 1sheeld produces output of (0,0). summarising, the bulk of code works, unable 1sheeld output correct coordinates when combined code. if has idea how fix appreciated code: [select] #include <onesheeld.h> #include <adafruit_gps.h> #include <softwareserial.h> softwareserial myserial(3, 2); adafruit_gps gpsm(&myserial); #define gpsecho false #define custom_settings #define include_gps_shield boolean usinginterrupt = false; void useinterrupt(boolean); float lat_gps,long_gps,lat_gpsm,long_gpsm; float lonr1,lonr2,latr1,latr2; char charlat [10]; char charlon [10]; char readings [80]...