blob: 66c7e606623a0887932570bf89f5accef91c1803 (
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
|
.. _arduino-continue:
continue
========
The continue statement skips the rest of the current iteration of a
loop (**do**, **for**, or **while**). It continues by checking the
conditional expression of the loop, and proceeding with any
subsequent iterations.
Example
-------
::
for (x = 0; x < 255; x ++)
{
if (x > 40 && x < 120){ // create jump in values
continue;
}
digitalWrite(PWMpin, x);
delay(50);
}
|