ESP8266 part of the f105-motor-demo project (see f105-motor-demo_stm32)
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
#ifndef FTOA_H
|
|
#define FTOA_H
|
|
|
|
#include <esp8266.h>
|
|
|
|
/* itoa: convert n to characters in s. returns length */
|
|
int my_itoa(int n, char *s);
|
|
int my_ftoa(char *buffer, float f, int precision);
|
|
|
|
#endif // FTOA_H
|
|
|