Arduino sprintf float not formatting
Asked Answered
L

5

67

I have this arduino sketch,

char temperature[10];
float temp = 10.55;
sprintf(temperature,"%f F", temp);
Serial.println(temperature);

temperature prints out as

? F

Any thoughts on how to format this float? I need it to be a char string.

Loireatlantique answered 25/12, 2014 at 21:54 Comment(0)
V
145

Due to some performance reasons %f is not included in the Arduino's implementation of sprintf(). A better option would be to use dtostrf() - you convert the floating point value to a C-style string, Method signature looks like:

char *dtostrf(double val, signed char width, unsigned char prec, char *s)

Use this method to convert it to a C-Style string and then use sprintf, eg:

char str_temp[6];

/* 4 is mininum width, 2 is precision; float value is copied onto str_temp*/
dtostrf(temp, 4, 2, str_temp);
sprintf(temperature,"%s F", str_temp);

You can change the minimum width and precision to match the float you are converting.

Vernverna answered 26/12, 2014 at 1:22 Comment(2)
Worked fine in my case. Thumbs up!Tipple
just a caution, the width of your buffer: str_temp is very tight at 6 charactersLithography
A
9

As has been stated before Float support is not included in sprintf on Arduino.

String class

Arduino has its own String class.

String value = String(3.14);

then,

char *result = value.c_str();

String class reference, link above

Constructs an instance of the String class. There are multiple versions that construct Strings from different data types (i.e. format them as sequences of characters), including:

  • a constant string of characters, in double quotes (i.e. a char array)
  • a single constant character, in single quotes
  • another instance of the String object
  • a constant integer or long integer
  • a constant integer or long integer, using a specified base
  • an integer or long integer variable
  • an integer or long integer variable, using a specified base
  • a float or double, using a specified decimal places
Aleta answered 31/7, 2017 at 18:49 Comment(6)
Important notice to the pointer above: "When you modify the String object, or when it is destroyed, any pointer previously returned by c_str() becomes invalid and should not be used any longer."Temperate
I would say, obviously, but yes, that is an excellent point for people new to Arduino programming.Aleta
Arduino's String class does not have a method that accepts float or double. This only works because it converts it to an integer.Bartolommeo
@CameronLowellPalmer You're right, my mistake. The most recent Arduino release does include String support for double and float. I'm using an older release included with Ubuntu that pre-dates this, and throws a compiler error when I try to pass a float to String().Bartolommeo
Caution: just a tedious yet important note about String class for newbies: it dynamically allocates/deallocates heap memory, because of this it is a great generator of "heap-fragmentation" in the long run. Try to keep its use limited preferring C-style strings. More about Arduino memory caveatsWalloper
It even takes second parameter as precision, String(3.1434, 4)Consideration
J
2

I've struggled for a few hours on getting this right, but I did finally. And this uses modern Espressif C++ provided by Platformio, and my target MCU is an ESP32.

I wanted to display a prefix label, the float/int value, then the unit, all inline.

I can't relay on seperate Serial.print() statements, as I am using an OLED display.

Here's my code example:

  int strLenLight = sizeof("Light ADC: 0000");
  int strLenTemp = sizeof("Temp: 000.0 °C");
  int strLenHumd = sizeof("Humd: 00.0 %");

  char displayLight[strLenLight] = "Light ADC: ";
  char displayTemp[strLenTemp] = "Temp: ";
  char displayHumd[strLenHumd] = "Humd: ";

  snprintf(strchr(displayLight, '\0'), sizeof(displayLight), "%d", light_value);
  snprintf(strchr(displayTemp, '\0'), sizeof(displayTemp), "%.1f °C", temperature); 
  snprintf(strchr(displayHumd, '\0'), sizeof(displayHumd), "%.1f %%", humidity); 

  Serial.println(displayLight);
  Serial.println(displayTemp);
  Serial.println(displayHumd);

Which displays:

Light ADC: 1777
Temp: 25.4 °C
Humd: 55.0 %
Jenna answered 8/7, 2020 at 20:50 Comment(0)
F
-1

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!

Faydra answered 18/2, 2020 at 13:27 Comment(1)
The sprintf() linked by default does not support %f, but you can link in a full version of sprintf() if required.Delmore
G
-1

Open *.map-file in the temporary directory where the project has been compiled. Look from which library sprintf-function was loaded. If it is a libc_s.a, you can find a libc.a nearby. You can get the full version of sprintf if you rename libc_s.a and make a symbolic link from libc.a instead.

Gastrectomy answered 2/2, 2024 at 21:10 Comment(1)
Your answer could be improved with additional supporting information. Please edit to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers in the help center.Prelude

© 2022 - 2025 — McMap. All rights reserved.