diff options
Diffstat (limited to 'docs/source/arduino/word.rst')
-rw-r--r-- | docs/source/arduino/word.rst | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/source/arduino/word.rst b/docs/source/arduino/word.rst new file mode 100644 index 0000000..39b3a0d --- /dev/null +++ b/docs/source/arduino/word.rst @@ -0,0 +1,29 @@ +.. _arduino-word: + +word +==== + +Description +----------- + +A word stores a 16-bit unsigned number, from 0 to 65535. Same as an +unsigned int. + + + +Example +------- + +:: + + word w = 10000; + + + +See also +-------- + + +- `byte <http://arduino.cc/en/Reference/Byte>`_ +- `word <http://arduino.cc/en/Reference/WordCast>`_\ () + |