Arduinoにおける文法は標準C言語と特に変わりはありません。
●Example from Arduino Web Site
[c]
int myInts[6];
int myPins[] = {2, 4, 8, 3, 6};
int mySensVals[6] = {2, 4, -8, 3, 2};
char message[6] = "hello";
[/c]
Arduinoにおける文法は標準C言語と特に変わりはありません。
●Example from Arduino Web Site
[c]
int myInts[6];
int myPins[] = {2, 4, 8, 3, 6};
int mySensVals[6] = {2, 4, -8, 3, 2};
char message[6] = "hello";
[/c]