You are reading a single comment by @HughB and its replies. Click here to read the full conversation.
  • @user137174 - have you tried GPSinfo or GPStouch.

    If you use GPStouch - you should see the timestamp from the GPS start coming back and set on the lower part of the display. If the time stays at 00:00:00 then the GPS is not responding and sending GPS fix events to the Bangle. I have experienced a day when I could not get a fix outside.

    If you type the 2 bits of code below into the IDE you can see if they GPS is responding.
    If there are no events at all nothing will get printed.
    GPS touch will show the timestamp in the fix - as show below.
    If the GPS is responding then it should eventually get a fix outside.

    >
    >Bangle.on('GPS', (f)=>{console.log(f);} );
    =undefined
    >
    >Bangle.setGPSPower(1);
    =true
    { "lat": NaN, "lon": NaN, "alt": NaN, "speed": 0,
      "course": 0, "time": undefined, "satellites": 0, "fix": 0, "hdop": 25.5 }
    { "lat": NaN, "lon": NaN, "alt": NaN, "speed": NaN,
      "course": NaN,
      "time": Date: Wed Dec 1 2021 00:31:38 GMT+0000,
      "satellites": 0, "fix": 0, "hdop": 25.5 }
    { "lat": NaN, "lon": NaN, "alt": NaN, "speed": NaN,
      "course": NaN,
      "time": Date: Wed Dec 1 2021 00:31:39 GMT+0000,
      "satellites": 0, "fix": 0, "hdop": 25.5 }
    
About

Avatar for HughB @HughB started