Comment ajouter une valeur flottante de dans une chaîne?

Jai une variable flottante lng = 33.785469 et lat = 78.126548. Maintenant, je peux les convertir en String et les ajouter dans une variable String « my_location » comme « votre emplacement est \ nlng = 33.785469 \ nlat = 78.126548 ». Jessayais de le faire avec

 char charVal[5]; //temporarily holds data from vals String stringVal = ""; //data on buff is copied to this string dtostrf(lng , 4, 2, charVal); //4 is mininum width, 2 is precision; float value is copied onto buff //convert chararray to string for(int i=0;i<sizeof(charVal);i++) { stringVal+=charVal[i]; } GPS_string = GPS_string + "Car location: \nlat:" + stringVal; stringVal = ""; 

et cela ma donné une erreur:

error: cannot convert "String" to "double" for argument "1" to "char* dtostrf(double, signed char, unsigned char, 

Réponse

Cette question a été répondue dans la question précédente, mais je peux répéter ici:

void loop() { ... float latitude = 33.546600; float longitude = 75.456912; String buf; buf += F("your location is \nlat:"); buf += String(latitude, 6); buf += F("\nlong:"); buf += String(longitude, 6); Serial.println(buf); ... } 

Une alternative consiste à utiliser dtostrf () comme dans votre extrait :

void loop() { ... float latitude = 33.546600; float longitude = 75.456912; const int BUF_MAX = 64; char buf[BUF_MAX]; const int VAL_MAX = 16; char val[VAL_MAX]; strcpy_P(buf, (const char*) F("your location is \nlat:")); dtostrf(latitude, 8, 6, val); strcat(buf, val); strcat_P(buf, (const char*) F("\nlong:")); dtostrf(longitude, 8, 6, val); strcat(buf, val); ... } 

Cheers!

Laisser un commentaire

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *