mirror of
https://github.com/digistump/DigistumpArduino.git
synced 2025-04-28 15:49:02 -07:00
5 lines
108 B
C
5 lines
108 B
C
void UTFT::_convert_float(char *buf, double num, int width, byte prec)
|
|
{
|
|
dtostrf(num, width, prec, buf);
|
|
}
|