Page 183 - 최강 아두이노 퍼스트 참고서
P. 183

// constants won't change. They're used here to  // set pin numbers: const
                 int buttonPin = 2;     // the number of the pushbutton pin const int ledPin
                 =  10;      // the number of the LED pin

                 // variables will change:
                 int buttonState = 0;         // variable for reading the pushbutton status

                 void setup() {
                   // initialize the LED pin as an output:
                   pinMode(ledPin, OUTPUT);
                   // initialize the pushbutton pin as an input:
                   pinMode(buttonPin, INPUT);
                 }

                 void loop(){
                   // read the state of the pushbutton value:
                   buttonState = digitalRead(buttonPin);

                   // check if the pushbutton is pressed.
                 // if it is, the buttonState is HIGH:
                 //    if (buttonState == HIGH)
                 {          // turn LED on:
                     digitalWrite(ledPin, HIGH);
                   }    else
                 {
                     //  turn  LED  off:          digitalWrite(ledPin,
                 LOW);
                   }
                 }




               먼저 위의 버튼 테스트 코드 및 회로도 구성 완성 후 5V 릴레이 모듈과 와이어링을 합니다.

               5V 릴레이 모듈의 GND, VCC 와 아두이노 보드의 GND, 5V 연결 합니다. 아두이노 보드의
               13 번 핀과 릴레이 모듈의 IN1 과 연결 합니다.

               릴레이 모듈 테스트 시 주의사항:






                                                   183
   178   179   180   181   182   183   184   185   186   187   188