아두이노 우노 R4 - 버튼 - LED

이 튜토리얼은 Arduino UNO R4와 버튼을 사용하여 LED를 제어하는 방법을 가르쳐 줍니다. 두 가지 다른 방법을 배우게 될 것입니다:

응용 프로그램 1 - LED는 버튼의 상태를 따릅니다:

응용 프로그램 2 - 버튼을 누를 때마다 LED의 상태가 변경됩니다:

응용 프로그램 2의 경우 버튼 디바운스가 필요합니다, 버튼이 올바르게 작동하도록 보장하기 위해서입니다. Arduino 코드에서 디바운스를 적용했을 때와 적용하지 않았을 때 LED 작동을 비교함으로써 이것이 왜 중요한지 알 수 있습니다.

아두이노 UNO R4 제어 LED

Hardware Preparation

1×Arduino UNO R4 WiFi Amazon
1×Arduino UNO R4 Minima (Alternatively) Amazon
1×USB Cable Type-C 쿠팡 | Amazon
1×Breadboard-mount Button with Cap 쿠팡 | Amazon
1×Breadboard-mount Button Kit 쿠팡 | Amazon
1×Panel-mount Push Button Amazon
1×LED Kit with resistor Amazon
1×LED (red) Amazon
1×220 ohm resistor Amazon
1×Breadboard 쿠팡 | Amazon
1×Jumper Wires Amazon
1×(Recommended) Screw Terminal Block Shield for Arduino UNO R4 쿠팡 | Amazon
1×(Recommended) Breadboard Shield For Arduino UNO R4 쿠팡 | Amazon
1×(Recommended) Enclosure For Arduino UNO R4 Amazon
1×(Recommended) Power Splitter For Arduino UNO R4 Amazon
공개: 이 섹션에서 제공된 링크 중 일부는 제휴 링크입니다. 이 링크를 통해 구매한 경우 추가 비용없이 수수료를 받을 수 있습니다. 지원해 주셔서 감사합니다.

LED 및 버튼 소개

LED 및 버튼(핀 배치, 작동, 프로그래밍 포함)에 익숙하지 않은 경우 다음 튜토리얼이 도움이 될 수 있습니다:

Wiring Diagram

아두이노 UNO R4 버튼 LED 배선도

이 이미지는 Fritzing을 사용하여 만들어졌습니다. 이미지를 확대하려면 클릭하세요.

애플리케이션 1 - 버튼 상태에 따라 LED가 작동합니다.

아두이노 UNO R4 코드

/* * 이 Arduino UNO R4 코드는 newbiely.kr 에서 개발되었습니다 * 이 Arduino UNO R4 코드는 어떠한 제한 없이 공개 사용을 위해 제공됩니다. * 상세한 지침 및 연결도에 대해서는 다음을 방문하세요: * https://newbiely.kr/tutorials/arduino-uno-r4/arduino-uno-r4-button-led */ #define BUTTON_PIN 7 // The Arduino UNO R4 pin connected to the button #define LED_PIN 3 // The Arduino UNO R4 pin connected to the LED void setup() { Serial.begin(9600); // initialize serial pinMode(BUTTON_PIN, INPUT_PULLUP); // set arduino pin to input pull-up mode pinMode(LED_PIN, OUTPUT); // set arduino pin to output mode } void loop() { int buttonState = digitalRead(BUTTON_PIN); // read new state if (buttonState == LOW) { Serial.println("The button is being pressed"); digitalWrite(LED_PIN, HIGH); // turn on } else if (buttonState == HIGH) { Serial.println("The button is unpressed"); digitalWrite(LED_PIN, LOW); // turn off } }

Detailed Instructions

다음 지침을 단계별로 따르세요:

  • Arduino Uno R4 WiFi/Minima를 처음 사용하는 경우 Arduino IDE에서 Arduino Uno R4 WiFi/Minima 환경 설정에 관한 튜토리얼을 참조하세요.
  • 제공된 다이어그램에 따라 부품을 연결하세요.
  • USB 케이블을 사용하여 Arduino Uno R4 보드를 컴퓨터에 연결하세요.
  • 컴퓨터에서 Arduino IDE를 실행하세요.
  • 적절한 Arduino Uno R4 보드(예: Arduino Uno R4 WiFi)와 COM 포트를 선택하세요.
  • 코드를 복사하여 Arduino IDE에서 엽니다.
  • Arduino IDE의 Upload 버튼을 클릭하여 코드를 컴파일하고 Arduino UNO R4에 업로드하세요.
Arduino IDE 코드 업로드
  • 버튼을 눌러 몇 초간 유지하세요.
  • LED의 상태 변화를 확인하세요.

LED 상태가 버튼 상태와 동기화되어 있음을 알 수 있습니다.

코드 설명

소스 코드의 주석에 포함된 줄 설명을 확인하세요!

응용 프로그램 2 - 버튼이 눌릴 때마다 LED 상태가 변경됩니다.

아두이노 UNO R4 코드 - 디바운싱 없이 버튼이 LED를 전환합니다.

/* * 이 Arduino UNO R4 코드는 newbiely.kr 에서 개발되었습니다 * 이 Arduino UNO R4 코드는 어떠한 제한 없이 공개 사용을 위해 제공됩니다. * 상세한 지침 및 연결도에 대해서는 다음을 방문하세요: * https://newbiely.kr/tutorials/arduino-uno-r4/arduino-uno-r4-button-led */ #define BUTTON_PIN 7 // The Arduino UNO R4 pin connected to the button #define LED_PIN 3 // The Arduino UNO R4 pin connected to the LED int led_state = LOW; // the current state of LED int button_state; // the current state of button int prev_button_state; // the previous state of button void setup() { Serial.begin(9600); // initialize serial pinMode(BUTTON_PIN, INPUT_PULLUP); // set arduino pin to input pull-up mode pinMode(LED_PIN, OUTPUT); // set arduino pin to output mode button_state = digitalRead(BUTTON_PIN); } void loop() { prev_button_state = button_state; // save the last state button_state = digitalRead(BUTTON_PIN); // read new state if(prev_button_state == HIGH && button_state == LOW) { Serial.println("The button is pressed"); // toggle state of LED led_state = !led_state; // control LED arccoding to the toggled state digitalWrite(LED_PIN, led_state); } }

코드 설명

Arduino UNO R4 코드 위의 주석 라인에서 설명을 찾을 수 있습니다.

코드에서 led_state = !led_state 표현은 다음 코드와 같습니다:

if(led_state == LOW) led_state = HIGH; else led_state = LOW;

Detailed Instructions

  • 코드를 복사하여 Arduino IDE에서 엽니다.
  • 코드를 Arduino UNO R4에 업로드합니다.
  • 버튼을 여러 번 눌렀다 놓습니다.
  • LED 상태의 변화를 확인합니다.

버튼을 누를 때마다 LED가 바뀌는 것을 알 수 있습니다. 그러나 이것이 항상 완벽하게 작동하는 것은 아닙니다. 때때로 버튼을 한 번 눌렀을 때 LED가 너무 많이 빠르게 바뀌거나 전혀 바뀌지 않을 수도 있습니다 (매우 빠르게 두 번 바뀌어 알아차리기 어려울 수 있습니다).

⇒ 이 문제를 해결하려면 버튼 디바운스가 필요합니다.

Arduino UNO R4 코드 - 디바운싱과 함께 버튼으로 LED 전환

버튼의 디바운싱은 초보자에게는 어려운 작업이 될 수 있습니다. 다행히도 ezButton 라이브러리를 사용하면 쉽게 해결할 수 있습니다.

디바운싱이 왜 필요할까요? 자세한 내용은 Arduino UNO R4 - 버튼 디바운싱 튜토리얼을 참조하세요.

/* * 이 Arduino UNO R4 코드는 newbiely.kr 에서 개발되었습니다 * 이 Arduino UNO R4 코드는 어떠한 제한 없이 공개 사용을 위해 제공됩니다. * 상세한 지침 및 연결도에 대해서는 다음을 방문하세요: * https://newbiely.kr/tutorials/arduino-uno-r4/arduino-uno-r4-button-led */ #include <ezButton.h> #define BUTTON_PIN 7 // The Arduino UNO R4 pin connected to the button #define LED_PIN 3 // The Arduino UNO R4 pin connected to the LED ezButton button(BUTTON_PIN); // create ezButton object that attach to pin 7; int led_state = LOW; // the current state of LED void setup() { Serial.begin(9600); // initialize serial pinMode(LED_PIN, OUTPUT); // set arduino pin to output mode button.setDebounceTime(50); // set debounce time to 50 milliseconds } void loop() { button.loop(); // MUST call the loop() function first if(button.isPressed()) { Serial.println("The button is pressed"); // toggle state of LED led_state = !led_state; // control LED arccoding to the toggleed sate digitalWrite(LED_PIN, led_state); } }

Detailed Instructions

  • EzButton 라이브러리를 설치합니다. ezButton 라이브러리를 참고하여 설치 방법을 확인하세요.
  • 코드를 복사하여 Arduino IDE로 엽니다.
  • Arduino IDE에서 Upload 버튼을 클릭하여 코드를 Arduino UNO R4에 업로드합니다.
  • 버튼을 여러 번 눌렀다 놓습니다.
  • LED의 상태 변화를 확인합니다.

버튼을 누를 때마다 LED 상태가 정확히 한 번씩 전환되는 것을 볼 수 있습니다.

Video Tutorial

비디오 제작은 시간이 많이 걸리는 작업입니다. 비디오 튜토리얼이 학습에 도움이 되었다면, YouTube 채널 을 구독하여 알려 주시기 바랍니다. 비디오에 대한 높은 수요가 있다면, 비디오를 만들기 위해 노력하겠습니다.

※ OUR MESSAGES

  • Please feel free to share the link of this tutorial. However, Please do not use our content on any other websites. We invested a lot of effort and time to create the content, please respect our work!