aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/lang/byte.rst
blob: 45c9d5f28d139b8382ca464ca4c0586e7744ca5c (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
.. highlight:: cpp

.. _lang-byte:

byte
====

The ``byte`` type stores a 1-byte (8-bit) unsigned integer number,
from 0 to 255.

.. warning::

   The ``byte`` type is provided for compatibility with Arduino.
   However, it is a non-standard extension.  The standard C++ type for
   storing an 8-bit unsigned integer is ``unsigned char``; we
   recommend using that instead.  (Your code will still work on an
   Arduino).


Example
-------

::

        byte b = 134;

See Also
--------

-  :ref:`byte() <lang-bytecast>` (casting a value to a byte)
-  :ref:`Variables <lang-variables>`


.. include:: cc-attribution.txt