2015-06-23 12:42:35 -07:00

5 lines
108 B
C

void UTFT::_convert_float(char *buf, double num, int width, byte prec)
{
dtostrf(num, width, prec, buf);
}