Arduino入門:制御文 if

ArduinoのSketch(スケッチ)で使用するif制御文について解説します。

//Arduino Sketch Example: If, If else statement
//Date: 2015.1.18
//Auther: easy labo
//

//if statement
if(boolean_expression){
  // do something here
}

//if else statement
if(boolean_expression_1){
  // Action 1
}else{
  // Action 2
}

//if else statement
if(boolean_expression_1)
{
  // Action 1
}else if(boolean_expression_2){
  // Action 2
}else{
  // Action 3
}

Sketch(スケッチ)では、if文、if-else文、if-else-if文が使用できます。書式は、上記の例の通りC言語と同様です。boolean_expression_*がtrueだと、if文の処理が実行されます。また、else文の前にある、if文のboolean_expression_*が全てfalseだと、else文の処理が実行されます。

→その他のArduino関連情報

Sponsored Link