PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

8 lines
173B

  1. void UTFT::_convert_float(char *buf, double num, int width, byte prec)
  2. {
  3. char format[10];
  4. sprintf(format, "%%%i.%if", width, prec);
  5. sprintf(buf, format, num);
  6. }