blob: d69f66aeb98e1268441e17fcc181255fa465bba2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
.. _arduino-lowbyte:
lowByte()
=========
Description
-----------
Extracts the low-order (rightmost) byte of a variable (e.g. a
word).
Syntax
------
lowByte(x)
Parameters
----------
x: a value of any type
Returns
-------
byte
See also
--------
- `highByte <http://arduino.cc/en/Reference/HighByte>`_\ ()
- `word <http://arduino.cc/en/Reference/WordCast>`_\ ()
|