Hi again. I have managed to get to where I have the Electron/Asset Tracker operating and communicating via the cloud to report GPS data into the Particle dashboard.
!!!
One thing that I am struggling with is the monitoring of the NMEA sentences over serial.
I have loaded the AssetTracker library and I can see in the 1_GPS_Features code that I should be able to see the raw NMEA sentences from the GPS over the serial.
// Opens up a Serial port so you can listen over USB
Serial.begin(9600);
and
// Dumps the full NMEA sentence to serial in case you're curious
Serial.println(t.preNMEA());
But when I run the serial monitor in Particle Dev (whilst Electron is running the Asset Tracker code and breathing cyan) - there is no serial data stream.
I even monitored with PuTTy, same result.
As usual I probably have missed something. Can you help me with what it is?
Thanks (thanks to all those who offer advice!! )