Hello,
I have about finished my Arduino UNO High Altitude Balloon tracking device, it is based on the L80-M39 GPS from Quectel, it transmits with the LoRa Bee.
I am aware I have to enable the balloon mode for the GPS to keep on working over 18km altitude, so I have done it as shown below.
BUT ... How can I be sure it is really enabled?
It is not cheap to send a balloon, and I would hate to find out the command did not work after the flight....
Can someone help?
TinyGPSPlus gps;
SoftwareSerial ss(3, 4);
#define PMTK_SET_NMEA_886_PMTK_FR_MODE "$PMTK886,3*2B"
void balloonModeGPS() {
if ((ss.available())) {
ss.println(PMTK_SET_NMEA_886_PMTK_FR_MODE);
Serial.println("GPS balloon mode configured on L80");
}
else{
Serial.println("Error in GPS, balloon mode not configured");
}
}