ArduinoのSketch(スケッチ)のコメント等を始めとする基本文法について解説します。
セミコロンとコメント
Sketchの文の終わりには、; (セミコロン)を置きます。{ … } (波かっこ)は、ループ文や、条件文等の記述に使用されます。
//Arduino Sketch Example: Other Syntax
//Date: 2014.12.28
//Author: easy labo
//semicolon
int x = 1;
//curly braces
while (boolean expression){
//do something here
}
//single line comment
//This is a single line comment.
/*
multi line commnet
//single line comment is OK inside a multiline comment
*/
上記の例の様に、1行のコメントは、//で、複数行のコメントは、/* … */で記述する事ができます。
includeとdefine
ファイルのインクルードは、#include、定義は、#defineで行う事が出来ます。
//Arduino Sketch Example: include and define
//Date: 2014.12.28
//Author: easy labo
#include
#define ledRED 3
なお、#inculudeと、#defineでは、文末のセミコロンは必要ありません。
Sponsored Link