• It should work, and the software looks fine...

    How have you wired it? Generally TX connects to RX and vice-versa for serial.

    To debug, you could do just the following:

    Serial1.setup(9600, {tx: B6, rx: B7});
    Serial1.on('data', function(d) { console.log(JSON.stringify(d)); });
    

    That'll output any serial data that gets received, regardless of whether it's GPS or not.

    The Adafruit page says:

    The LED blinks at about 1Hz while it's searching for satellites and blinks once every 15 seconds when a fix is found to conserve power.

    So at 1 per second it hasn't actually got a fix yet - it flashes every 15 secs when it's got a fix. That could actually be why you're not getting any data out - maybe you just need to wait a bit longer :)

About

Avatar for Gordon @Gordon started