Diferencia entre revisiones de «char()»
De ArduWiki
(→Vea también) |
(→Advertencias) |
||
(No se muestran 14 ediciones intermedias del mismo usuario) | |||
Línea 1: | Línea 1: | ||
== Descripción == | == Descripción == | ||
+ | Convierte valor numerico a un dato tipo [[char]]. | ||
== Sintaxis == | == Sintaxis == | ||
<pre> | <pre> | ||
+ | char(variable); | ||
</pre> | </pre> | ||
+ | |||
+ | == Parámetros == | ||
+ | ;variable: variable de cualquier tipo a evaluar. | ||
+ | |||
+ | == Retorna == | ||
+ | Retorna un [[char]]. | ||
== Advertencias == | == Advertencias == | ||
+ | No funciona con cadenas [[string]] o matrices ni objetos [[String]]. | ||
== Ejemplo == | == Ejemplo == | ||
− | < | + | <syntaxhighlight lang="c++"> |
− | </ | + | char a = 'A'; |
+ | byte b = 123; | ||
+ | |||
+ | void setup(){ | ||
+ | Serial.begin(9600); | ||
+ | |||
+ | byte valor1 = byte(a); //65 | ||
+ | Serial.println(valor1); | ||
+ | |||
+ | int valor2 = long(b); | ||
+ | Serial.println(valor2); //123 | ||
+ | |||
+ | unsigned int valor3 = word(b); | ||
+ | Serial.println(valor3); //123 | ||
+ | |||
+ | long valor4 = long(b); | ||
+ | Serial.println(valor4); //123 | ||
+ | } | ||
+ | |||
+ | void loop(){ | ||
+ | //Nada. | ||
+ | } | ||
+ | </syntaxhighlight> | ||
== Vea también == | == Vea también == | ||
− | * [[ | + | <categorytree mode=all>Funciones conversion</categorytree> |
− | * [[ | + | |
− | * [[ | + | * [[atoi()]] desde matriz |
− | * [[ | + | * [[atol()]] desde matriz |
− | * [[ | + | * [[strtoul()]] desde matriz |
− | * [[toInt()]] | + | * [[atof()]] desde matriz |
− | * [[ | + | * [[objeto.getBytes()]] desde String |
+ | * [[objeto.toInt()]] desde String | ||
+ | * [[objeto.toFloat()]] desde String | ||
− | == 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 22:53 24 jun 2019
Contenido
Descripción
Convierte valor numerico a un dato tipo char.
Sintaxis
char(variable);
Parámetros
- variable
- variable de cualquier tipo a evaluar.
Retorna
Retorna un char.
Advertencias
No funciona con cadenas string o matrices ni objetos String.
Ejemplo
char a = 'A';
byte b = 123;
void setup(){
Serial.begin(9600);
byte valor1 = byte(a); //65
Serial.println(valor1);
int valor2 = long(b);
Serial.println(valor2); //123
unsigned int valor3 = word(b);
Serial.println(valor3); //123
long valor4 = long(b);
Serial.println(valor4); //123
}
void loop(){
//Nada.
}
Vea también
- atoi() desde matriz
- atol() desde matriz
- strtoul() desde matriz
- atof() desde matriz
- objeto.getBytes() desde String
- objeto.toInt() desde String
- objeto.toFloat() desde String