2015年9月20日日曜日

Arduino: function definition

初歩的ですが,関数を定義する時のルール。MATLABに慣れてるとわかんないだよ。
Cause I get used to MATLAB, even function definition is confusing to me...

void loop() {
   int a = myFunc(); // must be defined.
}

// must be defined as the type of the return value.
// if the function does not return any values, void is used.

int myFunc() {
  int x = 1+2;
  return x;
}

引数を使うときは,またあとで。


0 件のコメント:

コメントを投稿