본문 바로가기

아두이노 새로 시작

반응형

아두이노 하는것을 초심으로 돌아간다는 생각을 했다.




왼쪽에 있는 것은 브래드 보드이다

오른쪽에 있는 것은 아두이노 pro mini 5v (ATmega328) 이다.



우선 드라이버랑 IDE를 설치 해야 한다.


 https://www.arduino.cc/en/Main/Software


위의 아두이노 사이트에서 다운 받을 수 있다.


여러가지 것들이 있는데 그중 자신의 컴퓨터 OS맞는 것을 다운 받도록 하자.


선택하면 기부할거냐는 사이트가 나오는데 그냥 JUST DOWNLOAD 를 눌렀다.



IDE를 실행하고 파일 -> 예제 -> 01. Basics -> Blink예제를 업로드 한다.





/*

  Blink

  Turns on an LED on for one second, then off for one second, repeatedly.


  Most Arduinos have an on-board LED you can control. On the Uno and

  Leonardo, it is attached to digital pin 13. If you're unsure what

  pin the on-board LED is connected to on your Arduino model, check

  the documentation at http://arduino.cc


  This example code is in the public domain.


  modified 8 May 2014

  by Scott Fitzgerald

 */



// the setup function runs once when you press reset or power the board

void setup() {

  // initialize digital pin 13 as an output.

  pinMode(13, OUTPUT);

}


// the loop function runs over and over again forever

void loop() {

  digitalWrite(13, HIGH);   // turn the LED on (HIGH is the voltage level)

  delay(1000);              // wait for a second

  digitalWrite(13, LOW);    // turn the LED off by making the voltage LOW

  delay(1000);              // wait for a second

}




업로드하면 아두이노에 있는 불빛이 켜졌다 꺼졌다 할것이다,


그것은 loop안에 digitalWrite라는 핀 관련 함수와 


delay라는 시간 관련 함수때문인데 두 함수에 대한건 아두이노 사이트에서 확인하도록 하자



앞으로 아두이노 가지고 재미있는 것들을 만들것이다.

반응형

'아두이노' 카테고리의 다른 글

아두이노 부품 정리1  (0) 2016.10.13
아두이노 시리얼 통신  (0) 2016.10.12
아두이노 논리회로 다루기 (74HC595)  (0) 2016.02.28
아두이노 레이저(with 눈차크)  (0) 2016.02.14
아두이노 피아노  (2) 2016.01.07