본문 바로가기
Arduino

아두이노 샘플 1

by 캡틴노랑이 2016. 4. 7.
반응형

2초간격으로 LED를 점등 시킨다.

핀은 12번 핀을 사용했다.











void setup() {
  // put your setup code here, to run once:
  pinMode(12,OUTPUT);  //핀번호 바꾸면 바뀐 핀번호로 작동함. 
}

void loop() {
  // put your main code here, to run repeatedly:
  digitalWrite(12, HIGH);
  delay(2000);
  digitalWrite(12, LOW);
  delay(2000);
}
 


반응형

'Arduino' 카테고리의 다른 글

아두이노 샘플 3  (0) 2016.04.07
아두이노 샘플 2  (0) 2016.04.07
아두이노 메서드  (0) 2016.04.06
아두이노 관련 정보  (0) 2016.03.31
아두이노 강좌 사이트  (0) 2016.03.07

댓글