diff options
Diffstat (limited to 'source/arduino/lowbyte.rst')
-rw-r--r-- | source/arduino/lowbyte.rst | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/source/arduino/lowbyte.rst b/source/arduino/lowbyte.rst new file mode 100644 index 0000000..d69f66a --- /dev/null +++ b/source/arduino/lowbyte.rst @@ -0,0 +1,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>`_\ () + + |