aboutsummaryrefslogtreecommitdiffstats
path: root/source/arduino/while.rst
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@mit.edu>2010-10-20 06:46:52 -0400
committerMarti Bolivar <mbolivar@mit.edu>2010-10-20 06:46:52 -0400
commit85c1c72db022bba891868afd3375e39dbe245701 (patch)
tree9d86a3db825667362a8c89a98a205586015aec94 /source/arduino/while.rst
parentabcfcc62cc62dfc088d30d5a6b6c36d6c89f7b07 (diff)
downloadlibrambutan-85c1c72db022bba891868afd3375e39dbe245701.tar.gz
librambutan-85c1c72db022bba891868afd3375e39dbe245701.zip
initial check-in of arduino docs in RST format (converted using wget+pandoc)
Diffstat (limited to 'source/arduino/while.rst')
-rw-r--r--source/arduino/while.rst46
1 files changed, 46 insertions, 0 deletions
diff --git a/source/arduino/while.rst b/source/arduino/while.rst
new file mode 100644
index 0000000..5155f09
--- /dev/null
+++ b/source/arduino/while.rst
@@ -0,0 +1,46 @@
+.. _arduino-while:
+
+while loops
+===========
+
+Description
+-----------
+
+**while** loops will loop continuously, and infinitely, until the
+expression inside the parenthesis, () becomes false. Something must
+change the tested variable, or the **while** loop will never exit.
+This could be in your code, such as an incremented variable, or an
+external condition, such as testing a sensor.
+
+
+
+Syntax
+------
+
+::
+
+ while(expression){
+ // statement(s)
+ }
+
+
+
+Parameters
+----------
+
+expression - a (boolean) C statement that evaluates to true or
+false
+
+
+
+Example
+-------
+
+::
+
+ var = 0;
+ while(var < 200){
+ // do something repetitive 200 times
+ var++;
+ }
+