1行のコメントを記述するときに使用します。
Arduinoにおける文法は標準C言語 と特に変わりはありません。
● Example from Arduino Web Site
[c]
x = 5; // This is a single line comment. Anything after the slashes is a comment
// to the end of the line
[/c]
1行のコメントを記述するときに使用します。
Arduinoにおける文法は標準C言語 と特に変わりはありません。
● Example from Arduino Web Site
[c]
x = 5; // This is a single line comment. Anything after the slashes is a comment
// to the end of the line
[/c]