Diferencia entre revisiones de «float()»
De ArduWiki
(→Advertencias) |
(→Referencias) |
||
Línea 53: | Línea 53: | ||
* [[long()]] | * [[long()]] | ||
− | == Referencias == | + | == Referencias externas == |
* [https://www.arduino.cc/reference/en/language/variables/data-types/float/ Guia de referencia de Arduino] | * [https://www.arduino.cc/reference/en/language/variables/data-types/float/ Guia de referencia de Arduino] | ||
* [http://rufianenlared.com/float/ Float, eres problematico y Arduino lo sabe] - Rufian de la Red | * [http://rufianenlared.com/float/ Float, eres problematico y Arduino lo sabe] - Rufian de la Red | ||
− | [[Category:Funciones]] | + | [[Category:Funciones conversion]] |
Revisión del 21:34 11 jun 2019
Contenido
Descripción
Convierte un valor numérico de cualquier tipo a float.
Sintaxis
float(variale);
Parametros
- variable
- variable de cualquier tipo a evaluar.
Retorna
Retorna un numero tipo float.
Advertencias
No funciona con cadenas string ni objetos String.
Ejemplo
char a = 'A';
byte b = 123;
int c = -123.45;
void setup(){
Serial.begin(9600);
byte valor1 = byte(a);
Serial.println(valor1);
int valor2 = long(b);
Serial.println(valor2);
unsigned int valor3 = word(b);
Serial.println(valor3);
long valor4 = long(b);
Serial.println(valor4);
float valor5 = float(c);
Serial.println(valor5);
}
void loop(){
//Nada.
}
Vea también
Referencias externas
- Guia de referencia de Arduino
- Float, eres problematico y Arduino lo sabe - Rufian de la Red