Diferencia entre revisiones de «float()»
De ArduWiki
(→Ejemplo) |
|||
(No se muestran 11 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 == | ||
+ | ;variable: variable de cualquier tipo a evaluar. [[char]], [[byte]], [[int]], [[long]], [[double]]. | ||
== Retorna == | == Retorna == | ||
Línea 11: | Línea 14: | ||
== Advertencias == | == Advertencias == | ||
− | + | No funciona con cadenas [[string]] ni objetos [[String]]. | |
== Ejemplo == | == Ejemplo == | ||
− | < | + | <syntaxhighlight lang="c++"> |
− | </ | + | 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. | ||
+ | } | ||
+ | </syntaxhighlight> | ||
== Vea también == | == Vea también == | ||
− | + | <categorytree mode=all>Funciones conversion</categorytree> | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | == Referencias == | + | == Referencias externas == |
− | * [https://www.arduino.cc/reference/ | + | * [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 | ||
− | [[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