Diferencia entre revisiones de «int()»
De ArduWiki
(→Vea también) |
(→Vea también) |
||
(No se muestran 2 ediciones intermedias del mismo usuario) | |||
Línea 17: | Línea 17: | ||
== Ejemplo == | == Ejemplo == | ||
− | < | + | <syntaxhighlight lang="c++"> |
− | </ | + | char a = 'A'; |
+ | byte b = 123; | ||
+ | |||
+ | 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); | ||
+ | } | ||
+ | |||
+ | void loop(){ | ||
+ | //Nada. | ||
+ | } | ||
+ | </syntaxhighlight> | ||
== Vea también == | == Vea también == | ||
− | + | <categorytree mode=all>Funciones conversion</categorytree> | |
− | + | ||
− | |||
− | |||
* [[atoi()]] | * [[atoi()]] | ||
* [[objeto.toInt()]] | * [[objeto.toInt()]] | ||
Línea 30: | Línea 50: | ||
* [[objeto.getBytes()]] | * [[objeto.getBytes()]] | ||
− | == Referencias == | + | == Referencias externas == |
* [https://www.arduino.cc/reference/es/language/functions/time/millis/ Guia de referencia de Arduino] | * [https://www.arduino.cc/reference/es/language/functions/time/millis/ Guia de referencia de Arduino] | ||
− | [[Category:Funciones]] | + | [[Category:Funciones conversion]] |
Revisión actual del 23:46 11 jun 2019
Contenido
Descripción
Convierte un valor en un dato tipo int.
Sintaxis
int(variable);
Parámetros
- variable
- variable de cualquier tipo a evaluar.
Retorna
Retorna un numero tipo int.
Advertencias
Nada.
Ejemplo
char a = 'A';
byte b = 123;
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);
}
void loop(){
//Nada.
}
Vea también