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