BayEOS-Arduino  1.8.0_0.0.4
HW_PIC32.h
1 void UTFT::_convert_float(char *buf, double num, int width, byte prec)
2 {
3  char format[10];
4 
5  sprintf(format, "%%%i.%if", width, prec);
6  sprintf(buf, format, num);
7 }