Mấy bạn giúp mình với.
Mình muốn lấy địa chỉ gps với dạng chuỗi thì phải làm s?
Đã ép kiểu mà k đc!
#include
#include
static const int RXPin = D4, TXPin = D5;
static const uint32_t GPSBaud = 9600;
float LAT, LNG;
String la ="", ln="";
// The TinyGPS++ object
TinyGPSPlus gps;
// The serial connection to the GPS device
SoftwareSerial ss(RXPin, TXPin);
void setup(){
Serial.begin(115200);
ss.begin(GPSBaud);
}
void loop(){
// This sketch displays information every time a new sentence is correctly encoded.
while (ss.available() > 0){
gps.encode(ss.read());
if (gps.location.isUpdated()){
Serial.print("LAT= ");
Serial.println(LAT, 6);
LAT = gps.location.lat();
la+=String(LAT);Serial.println(la);
LNG = gps.location.lng();
Serial.print("LNG= ");
Serial.println(LNG, 6);
ln+=LNG;Serial.println(ln);
delay(5000);
}
}
}