aboutsummaryrefslogtreecommitdiffstats
path: root/source/arduino/return.rst
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@mit.edu>2010-10-25 21:15:28 -0400
committerMarti Bolivar <mbolivar@mit.edu>2010-11-17 12:44:28 -0500
commit2d429e75ce69e77f8c95490ac03881ec9aa0354a (patch)
treea3b810a6c75625b07a4b976e5d1e319c60e19a6b /source/arduino/return.rst
parent30ac55d80c18e93f9c39a6dd850c10f9e7fd92ac (diff)
downloadlibrambutan-2d429e75ce69e77f8c95490ac03881ec9aa0354a.tar.gz
librambutan-2d429e75ce69e77f8c95490ac03881ec9aa0354a.zip
arduino language reference nearing completion, properly CC-BY-SA 3.0 attributed
Diffstat (limited to 'source/arduino/return.rst')
-rw-r--r--source/arduino/return.rst65
1 files changed, 27 insertions, 38 deletions
diff --git a/source/arduino/return.rst b/source/arduino/return.rst
index ae3b37d..9774320 100644
--- a/source/arduino/return.rst
+++ b/source/arduino/return.rst
@@ -1,69 +1,58 @@
+.. highlight:: cpp
+
.. _arduino-return:
return
======
-Terminate a function and return a value from a function to the
-calling function, if desired.
-
-
+(Keyword) Terminates a function and return a value from a function to
+the calling function, if the function has non-``void`` return type.
Syntax:
-------
-return;
-
-
-
-return value; // both forms are valid
-
-
-
-Parameters
-----------
+::
-value: any variable or constant type
+ // from within a "void" function:
+ return;
+ // from within a non-"void" function:
+ return value;
+In the second case, ``value`` should have a type which is the same as
+the return type of the function, or be convertible to it (like an
+``int`` to a ``long``, etc.; see :ref:`this note
+<arduino-arithmetic-typeconversion>` for some references).
Examples:
---------
-A function to compare a sensor input to a threshold
-
-::
+A function to compare a sensor input to a threshold::
- int checkSensor(){
+ // converts analog readings between 0 and 400 to 0, and 400 up to 1.
+ int checkSensor() {
if (analogRead(0) > 400) {
return 1;
- else{
+ else {
return 0;
}
}
+An early ``return`` is also useful when testing a section of code
+without having to "comment out" large sections of possibly buggy code,
+like so::
+ void loop() {
-The return keyword is handy to test a section of code without
-having to "comment out" large sections of possibly buggy code.
-
-
+ // brilliant code idea to test here
-::
+ return;
- void loop(){
-
- // brilliant code idea to test here
-
- return;
-
- // the rest of a dysfunctional sketch here
- // this code will never be executed
+ // the rest of a dysfunctional sketch here
+ // this code will never be executed
}
-
-
-See also
+See Also
--------
-`comments <http://arduino.cc/en/Reference/Comments>`_
-
+- :ref:`comments <arduino-comments>`