Diferencia entre revisiones de «lowByte()»
De ArduWiki
(→Parámetros) |
(→Referencias) |
||
Línea 32: | Línea 32: | ||
* [[bitshiftright]] - <nowiki>>></nowiki> | * [[bitshiftright]] - <nowiki>>></nowiki> | ||
− | == 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 bit y byte]] |
Revisión del 23:03 11 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
- bit()
- bitClear()
- bitRead()
- bitSet()
- bitWrite()
- highByte()
- shiftIn()
- shiftOut()
- bitshiftleft - <<
- bitshiftright - >>