5 lines
111 B
C
5 lines
111 B
C
void LCD5110::_convert_float(char *buf, double num, int width, byte prec)
|
|
{
|
|
dtostrf(num, width, prec, buf);
|
|
}
|