のfloat値を文字列に追加する方法は?

フロート変数lng = 33.785469およびlat = 78.126548があります。 これらを文字列に変換し、文字列変数「my_location」に「現在地は\ nlng = 33.785469 \ nlat = 78.126548」として追加できますか。

 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 = ""; 

でこれを実行しようとしましたが、エラーが発生しました:

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

回答

これは前の質問で回答済みですが、繰り返すことができます ここにあります:

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); ... } 

別の方法は、スニペットのように dtostrf()を使用することです。 :

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); ... } 

乾杯!

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です