Diferencia entre revisiones de «float()»
De ArduWiki
(→Vea también) |
(→Ejemplo) |
||
(No se muestran 6 ediciones intermedias del mismo usuario) | |||
Línea 1: | Línea 1: | ||
== Descripción == | == Descripción == | ||
− | Convierte un valor a | + | Convierte un valor numérico de cualquier tipo a [[float]]. |
== Sintaxis == | == Sintaxis == | ||
<pre> | <pre> | ||
− | float( | + | float(variable); |
</pre> | </pre> | ||
== Parametros == | == Parametros == | ||
− | ;variable: variable de cualquier tipo a evaluar. | + | ;variable: variable de cualquier tipo a evaluar. [[char]], [[byte]], [[int]], [[long]], [[double]]. |
== Retorna == | == Retorna == | ||
Línea 14: | Línea 14: | ||
== Advertencias == | == Advertencias == | ||
− | + | No funciona con cadenas [[string]] ni objetos [[String]]. | |
== Ejemplo == | == Ejemplo == | ||
Línea 20: | Línea 20: | ||
char a = 'A'; | char a = 'A'; | ||
byte b = 123; | byte b = 123; | ||
− | int c = - | + | int c = -12345; |
void setup(){ | void setup(){ | ||
Línea 47: | Línea 47: | ||
== Vea también == | == Vea también == | ||
− | + | <categorytree mode=all>Funciones conversion</categorytree> | |
− | |||
− | |||
− | |||
− | |||
− | == 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 actual del 00:46 19 jul 2019
Contenido
Descripción
Convierte un valor numérico de cualquier tipo a float.
Sintaxis
float(variable);
Parametros
Retorna
Retorna un numero tipo float.
Advertencias
No funciona con cadenas string ni objetos String.
Ejemplo
char a = 'A';
byte b = 123;
int c = -12345;
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