Diferencia entre revisiones de «atof()»
De ArduWiki
(→Ejemplo) |
(→Vea también) |
||
Línea 33: | Línea 33: | ||
* [[atol()]] | * [[atol()]] | ||
* [[strlen()]] | * [[strlen()]] | ||
− | |||
− | |||
== Referencias == | == Referencias == |
Revisión del 22:13 3 abr 2019
Contenido
Descripción
Convertir a float desde una matriz char.
Sintaxis
atol(matriz);
Parametros
- matriz
- nombre de la matriz tipo char
Retorno
Numero tipo float.
Advertencias
Nada.
Ejemplo
void setup(){
Serial.begin(115200);
char texto[] = "-123.45";
Serial.println(atof(texto),3); //-123.450
}
void loop(){
//Nada
}