Diferencia entre revisiones de «char()»
De ArduWiki
(→Referencias) |
(→Vea también) |
||
Línea 43: | Línea 43: | ||
== Vea también == | == Vea también == | ||
− | + | <categorytree mode=all>Funciones conversion</categorytree> | |
− | + | ||
− | |||
− | |||
− | |||
* [[atoi()]] desde matriz | * [[atoi()]] desde matriz | ||
* [[atol()]] desde matriz | * [[atol()]] desde matriz |
Revisión del 23:46 11 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 cedenas string 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