2014年4月30日 星期三

Arduino : 函式 Setup()

Ref: http://arduino.cc/en/Reference/Setup








setup()

初始化的函式, 當 sketch 執行時會呼叫此初始函式. 
通常用於 初始化變數, 初始化腳位, 開始使用函式庫,
此程式當 Arduino 主板電源啟動或重置時會被呼叫一次. 

Example

 
int buttonPin = 3;

void setup()
{
  Serial.begin(9600);
  pinMode(buttonPin, INPUT);
}

void loop()
{
  // ...
}
 



沒有留言:

張貼留言