setup()
설명
setup() 함수는 스케치를 시작할 때 불린다. 그것을 이용하여 변수, 핀 모드를 초기화하고, 라이브러리 사용 시작 등을 한다. setup() 함수는 아두이노 보드 전원 켜기 또는 리셋 후 한번만 실행된다.
예제 코드
int buttonPin = 3;
void setup() {
// put your setup code here, to executed once:
Serial.begin(9600);
pinMode(buttonPin, INPUT);
Serial.println("This is setup code");
}
void loop() {
// ...
}
The output on Serial Monitor:
COM6
This is setup code
Autoscroll
Clear output
9600 baud
Newline
더보기
- 언어 : loop()
- 튜토리얼 : Arduino - Code Structure
※ ARDUINO BUY RECOMMENDATION
Arduino UNO R3 | |
Arduino Starter Kit |
Please note: These are Amazon affiliate links. If you buy the components through these links, We will get a commission at no extra cost to you. We appreciate it.