Diferencia entre revisiones de «lowByte()»
De ArduWiki
(→Vea también) |
(→Vea también) |
||
Línea 29: | Línea 29: | ||
* [[shiftIn()]] | * [[shiftIn()]] | ||
* [[shiftOut()]] | * [[shiftOut()]] | ||
+ | * [[bitshiftleft]] - <nowiki><<</nowiki> | ||
+ | * [[bitshiftright]] - <nowiki>>></nowiki> | ||
== Referencias == | == Referencias == |
Revisión del 22:46 25 abr 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
- bit()
- bitClear()
- bitRead()
- bitSet()
- bitWrite()
- highByte()
- shiftIn()
- shiftOut()
- bitshiftleft - <<
- bitshiftright - >>