아두이노 기초 오프라인 세미나

아두이노

본 토픽은 현재 준비중입니다. 공동공부에 참여하시면 완성 되었을 때 알려드립니다.

아두이노 LED 깜박 깜박 켜기

LED 깜박깜박

아두이노 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

LED실습내용

실행동영상

참조한 글 : 

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

http://kaeeek.tistory.com/44

댓글

댓글 본문
버전 관리
happydeveloper
현재 버전
선택 버전
graphittie 자세히 보기