Diferencia entre revisiones de «highByte()»
De ArduWiki
(→Vea también) |
(→Ejemplo) |
||
Línea 17: | Línea 17: | ||
== Ejemplo == | == Ejemplo == | ||
− | < | + | <syntaxhighlight lang="c++"> |
− | </ | + | int n = 12345; |
+ | byte val1 = highByte(n); | ||
+ | byte val2 = lowByte(n); | ||
+ | </syntaxhighlight> | ||
== Vea también == | == Vea también == |
Revisión del 22:34 25 abr 2019
Contenido
Descripción
Extrae el byte de orden superior o el segundo byte más bajo de un tipo de datos más grande.
Sintaxis
highByte(variable);
Parámetros
- variable
- variable a evaluar que deberá ser int, long, float, unsigned int o unsigned long
Retornos
Retorna byte mas significativo.
Advertencias
Nada.
Ejemplo
int n = 12345;
byte val1 = highByte(n);
byte val2 = lowByte(n);