This page is also available in 3 other languages

setup()

[Sketch]

설명

setup() 함수는 스케치를 시작할 때 불린다. 그것을 이용하여 변수, 핀 모드를 초기화하고, 라이브러리 사용 시작 등을 한다. setup() 함수는 아두이노 보드 전원 켜기 또는 리셋 후 한번만 실행된다.

예제 코드

int buttonPin = 3;

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

void loop() {
  // ...
}

See also