키위백과의 잡동사니

STRUCTURE : loop() 본문

아두이노/참조(Reference)

STRUCTURE : loop()

KiwiPedia 2018. 4. 10. 17:59

loop()


설명(Description)

변수를 초기화하고 설정하는 setup()함수가 실행된 뒤 실행됩니다. loop()함수는 이름에서 알 수 있듯이 루프를 반복하여 프로그램이 변경하고 응답할 수 있도록 합니다. 그것을 사용하여 Arduino 보드를 능동적으로 제어하십시오.


예제 코드(Example Code)

int buttonPin = 3;

// setup initializes serial and the button pin
void setup()
{
  Serial.begin(9600);
  pinMode(buttonPin, INPUT);
}

// loop checks the button pin each time,
// and will send serial if it is pressed
void loop()
{
  if (digitalRead(buttonPin) == HIGH)
    Serial.write('H');
  else
    Serial.write('L');

  delay(1000);
}

'아두이노 > 참조(Reference)' 카테고리의 다른 글

STRUCTURE : /* */ (block comment)  (0) 2018.04.17
STRUCTURE : #include  (0) 2018.04.12
STRUCTURE : #define  (0) 2018.04.11
STRUCTURE : setup()  (0) 2018.04.10
아두이노 참조(Arduino Reference)  (0) 2018.04.10
Comments