아두이노 LED 켜기
LED는 아래 2개의 핀이 있는데 긴 쪽이 + 이고 짧은 쪽이 - 입니다.
아래 처림 회로를 구성하고 소스 코드를 작성해서 아두이노 롬에 업로드하면 동작합니다.
회로구성 http://arduino.cc/en/Tutorial/Blink
소스 코드 - github void setup() { pinMode(10, OUTPUT); } void loop() { digitalWrite(10, HIGH); delay(1000); digitalWrite(10, LOW); delay(1000); }
결과 사진
https://www.dropbox.com/s/dlfb62roeq12kfm/IMG_0297.JPG
실행동영상
참조한 글 :
http://www.ladyada.net/learn/arduino/lesson3.html
http://blog.naver.com/PostView.nhn?blogId=theparanbi&logNo=80159126198
http://cryidea.tistory.com/category/%EC%95%84%EB%A5%B4%EB%91%90%EC%9D%B4%EB%85%B8%20%28Arduino%29