Hey,
so I have this.
char temperature[10];
float temp = 10.55;
sprintf(temperature,"%f F", temp);
Serial.println(temperature);
temperature prints out
? F
Any thoughts on how to format this float? I need it to be a char string.
thanks.