Diferencia entre revisiones de «atof()»
De ArduWiki
(→Descripción) |
(→Ejemplo 1) |
||
Línea 21: | Línea 21: | ||
Serial.begin(115200); | Serial.begin(115200); | ||
char texto[] = "-123.45"; | char texto[] = "-123.45"; | ||
− | Serial.println( | + | float x = atof(texto); |
+ | Serial.println(x, 3); //-123.450 | ||
} | } | ||
Revisión del 21:44 30 abr 2019
Contenido
Descripción
Sintaxis
atof(matriz);
Parametros
- matriz
- nombre de la matriz tipo char
Retorno
Numero tipo float.
Advertencias
Nada.
Ejemplo 1
void setup(){
Serial.begin(115200);
char texto[] = "-123.45";
float x = atof(texto);
Serial.println(x, 3); //-123.450
}
void loop(){
//Nada
}