I have this arduino sketch,
char temperature[10]; float temp = 10.55; sprintf(temperature,\"%f F\", temp); Serial.println(temperature);
tem
dtostrf() is deprecated, and it doesn't exist on every board core platforms. On the other hand, sprintf() doesn't format floats on AVR platforms!
dtostrf()
sprintf()