Arduinoにおける文法は標準C言語と特に変わりはありません。
値を返さない関数を示します。
●Example from Arduino Web Site
[c]
// actions are performed in the functions "setup" and "loop"
// but no information is reported to the larger program
void setup()
{
// …
}
void loop()
{
// …
}
[/c]