Diferencia entre revisiones de «atof()»
De ArduWiki
(→Vea también) |
(→Ejemplo 2) |
||
Línea 26: | Línea 26: | ||
void loop(){ | void loop(){ | ||
//Nada | //Nada | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> |
Revisión del 22:43 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 1
void setup(){
Serial.begin(115200);
char texto[] = "-123.45";
Serial.println(atof(texto),3); //-123.450
}
void loop(){
//Nada
}