diff options
Diffstat (limited to 'source/lang/lowbyte.rst')
-rw-r--r-- | source/lang/lowbyte.rst | 26 |
1 files changed, 3 insertions, 23 deletions
diff --git a/source/lang/lowbyte.rst b/source/lang/lowbyte.rst index f9fb711..58e622f 100644 --- a/source/lang/lowbyte.rst +++ b/source/lang/lowbyte.rst @@ -3,43 +3,23 @@ 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 - - +**x**: a value of any type. However, if a non-integral type is used, +the results will be strange. Returns ------- -byte - - - -See also --------- - - -- `highByte <http://arduino.cc/en/Reference/HighByte>`_\ () -- `word <http://arduino.cc/en/Reference/WordCast>`_\ () - - - +The low byte's value (this will be between 0 and 255). .. include:: cc-attribution.txt |