aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/arduino/unsignedint.rst
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@mit.edu>2010-11-28 11:23:33 -0500
committerMarti Bolivar <mbolivar@mit.edu>2010-11-28 11:23:33 -0500
commit5e587be27a7c3bd854b686952a5c9637a2432ff0 (patch)
tree09d4ceeb46f19287ee874a24516c68be90c9ad8e /docs/source/arduino/unsignedint.rst
parentdb4ff6ba53e9b702c77411ae19cd53d914a675de (diff)
downloadlibrambutan-5e587be27a7c3bd854b686952a5c9637a2432ff0.tar.gz
librambutan-5e587be27a7c3bd854b686952a5c9637a2432ff0.zip
reorganized all the arduino/ docs into a lang/ subdirectory since
they're properly CC attributed now.
Diffstat (limited to 'docs/source/arduino/unsignedint.rst')
-rw-r--r--docs/source/arduino/unsignedint.rst80
1 files changed, 0 insertions, 80 deletions
diff --git a/docs/source/arduino/unsignedint.rst b/docs/source/arduino/unsignedint.rst
deleted file mode 100644
index 11412b1..0000000
--- a/docs/source/arduino/unsignedint.rst
+++ /dev/null
@@ -1,80 +0,0 @@
-.. _arduino-unsignedint:
-
-unsigned int
-============
-
-Description
------------
-
-Unsigned ints (unsigned integers) are the same as ints in that they
-store a 2 byte value. Instead of storing negative numbers however
-they only store positive values, yielding a useful range of 0 to
-65,535 (2^16) - 1).
-
-
-
-The difference between unsigned ints and (signed) ints, lies in the
-way the highest bit, sometimes refered to as the "sign" bit, is
-interpreted. In the Arduino int type (which is signed), if the high
-bit is a "1", the number is interpreted as a negative number, and
-the other 15 bits are interpreted with
-`2's complement math. <http://en.wikipedia.org/wiki/2's_complement>`_
-
-
-
-Example
--------
-
-::
-
- unsigned int ledPin = 13;
-
-
-
-Syntax
-------
-
-::
-
- unsigned int var = val;
-
-
-
-
-- var - your unsigned int variable name
-- val - the value you assign to that variable
-
-
-
-Coding Tip
-----------
-
-When variables are made to exceed their maximum capacity they "roll
-over" back to their minimum capacitiy, note that this happens in
-both directions
-
-
-
-::
-
- unsigned int x
- x = 0;
- x = x - 1; // x now contains 65535 - rolls over in neg direction
- x = x + 1; // x now contains 0 - rolls over
-
-
-
-See Also
---------
-
-
-- `byte <http://arduino.cc/en/Reference/Byte>`_
-- `int <http://arduino.cc/en/Reference/Int>`_
-- `long <http://arduino.cc/en/Reference/Long>`_
-- `unsigned long <http://arduino.cc/en/Reference/UnsignedLong>`_
-- `Variable Declaration <http://arduino.cc/en/Reference/VariableDeclaration>`_
-
-
-
-
-.. include:: cc-attribution.txt \ No newline at end of file