Diferencia entre revisiones de «lowByte()»

De ArduWiki
Saltar a: navegación, buscar
(Vea también)
(Vea también)
 
(No se muestran 11 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 ==
<pre>
+
<syntaxhighlight lang="c++">
</pre>
+
</syntaxhighlight>
  
 
== Vea también ==
 
== Vea también ==
* [[bit()]]
+
<categorytree mode=all>Funciones bit y byte</categorytree>
* [[bitClear()]]
+
<categorytree mode=all>Operador bit a bit</categorytree>
* [[bitRead()]]
 
* [[bitSet()]]
 
* [[bitWrite()]]
 
* [[highByte()]]
 
* [[shiftIn()]]
 
* [[shiftOut()]]
 
  
== 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 13:41 14 jul 2019

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


Referencias externas