Diferencia entre revisiones de «lowByte()»
De ArduWiki
(→Vea también) |
(→Vea también) |
||
(No se muestran 10 ediciones intermedias del mismo usuario) | |||
Línea 8: | Línea 8: | ||
== Parámetros == | == Parámetros == | ||
− | ;variable: variable a evaluar que ser tipo [[int]], [long], [[float]], [[unsigned int]] o [[unsigned long]]. | + | ;variable: variable a evaluar que ser tipo [[int]], [[long]], [[float]], [[unsigned int]] o [[unsigned long]]. |
== Retornos == | == Retornos == | ||
Línea 17: | Línea 17: | ||
== Ejemplo == | == Ejemplo == | ||
− | < | + | <syntaxhighlight lang="c++"> |
− | </ | + | </syntaxhighlight> |
== Vea también == | == Vea también == | ||
− | + | <categorytree mode=all>Funciones bit y byte</categorytree> | |
− | + | <categorytree mode=all>Operador bit a bit</categorytree> | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | == 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 actual del 17:41 14 jul 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