Diferencia entre revisiones de «char()»
De ArduWiki
(→Ejemplo) |
(→Referencias) |
||
Línea 56: | Línea 56: | ||
* [[objeto.toFloat()]] 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 del 21:36 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
- byte()
- int()
- word()
- long()
- float()
- atoi() desde matriz
- atol() desde matriz
- strtoul() desde matriz
- atof() desde matriz
- objeto.getBytes() desde String
- objeto.toInt() desde String
- objeto.toFloat() desde String