continue
continueキーワードはwhile、for、doループの途中で、continue以降の処理をスキップします。 ループの条件式を確認し、それ以降の繰り返しを続行します。
利用例
code:continueSample.ino
for (x = 0; x < 255; x ++) {
if (x > 40 && x < 120) { // create jump in values
continue; // skips the next two lines and goes to the
// beginning of the loop, with the next value of x
}
digitalWrite(PWMpin, x);
delay(50);
}
関連項目
このドキュメントはleafLabs, LLC.が執筆し、たま吉が翻訳・一部加筆修正したものです。