I am making follow me cooler

hi @dstoddart
i have the same problem…if you get the solution ,dont forget to share
thanks

hi @BlynkAndroidDev,
i am making follow me cooler ,i have my code all set up ,am stuck on this particular problem. Your help will be highly appreciated,if you solve this problem ASAP
thanks

#define BLYNK_PRINT Serial
#include <SoftwareSerial.h>
SoftwareSerial SwSerial(10, 11); // RX, TX
#include <BlynkSimpleSerialBLE.h>
#include <SoftwareSerial.h>
char auth[] = "YourAuthToken";
BLYNK_WRITE(V1) {
  GpsParam gps(param);
  Serial.print("Lat: ");
  Serial.println(gps.getLat(), 7);
  Serial.print("Lon: ");
  Serial.println(gps.getLon(), 7);
  Serial.print("Altitute: ");
  Serial.println(gps.getAltitude(), 2);
  Serial.print("Speed: ");
  Serial.println(gps.getSpeed(), 2);
  Serial.println();
}
void setup()
{
  Serial.begin(9600);
  SerialBLE.begin(9600);
  Blynk.begin(SerialBLE, auth);
  Serial.println("Waiting for connections...");
}

void loop()
{
  Blynk.run();
}

I fixed your posted code formatting… And moved your issue into your own topic. Please don’t tack “me toos” into others topics. Thank you.

Was your “cooler” problem fixed? Where can I find the fix? Give me a link please.