Diferencia entre revisiones de «lowByte()»
De ArduWiki
(→Vea también) |
(→Ejemplo) |
||
Línea 17: | Línea 17: | ||
== Ejemplo == | == Ejemplo == | ||
− | < | + | <syntaxhighlight lang="c++"> |
− | </ | + | </syntaxhighlight> |
== Vea también == | == Vea también == |
Revisión del 23:04 14 jun 2019
Contenido
Descripción
Extrae el byte de orden inferior (más a la derecha) de una variable (por ejemplo, una palabra).
Sintaxis
lowByte(variable);
Parámetros
- variable
- variable a evaluar que ser tipo int, long, float, unsigned int o unsigned long.
Retornos
Retorna byte.
Advertencias
Nada.
Ejemplo
Vea también
- bitshift left - (<<)
- bitshift right - (>>)