diff options
Diffstat (limited to 'source/arduino/bytecast.rst')
-rw-r--r-- | source/arduino/bytecast.rst | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/source/arduino/bytecast.rst b/source/arduino/bytecast.rst new file mode 100644 index 0000000..71ab4aa --- /dev/null +++ b/source/arduino/bytecast.rst @@ -0,0 +1,41 @@ +.. _arduino-bytecast: + +byte() +====== + +Description +----------- + +Converts a value to the +`byte <http://arduino.cc/en/Reference/Byte>`_ data type. + + + +Syntax +------ + +byte(x) + + + +Parameters +---------- + +x: a value of any type + + + +Returns +------- + +byte + + + +See also +-------- + + +- `byte <http://arduino.cc/en/Reference/Byte>`_ + + |