아두이노 나노 ESP32 - 안녕 세계 | Arduino Nano ESP32 - Hello World

이 튜토리얼은 Arduino Nano ESP32에서 첫 번째 프로그램을 작성하는 방법에 대한 지침을 제공합니다. Arduino Nano ESP32가 시리얼로 Hello World를 출력하는 방법을 배우게 됩니다.

준비물

1×Arduino Nano ESP32 Amazon
1×USB Cable Type-C 쿠팡 | Amazon
1×(Optional) DC Power Jack 쿠팡 | Amazon
1×Breadboard 쿠팡 | Amazon
1×Jumper Wires Amazon
1×(Recommended) Screw Terminal Adapter for Arduino Nano 쿠팡 | Amazon
공개: 이 섹션에서 제공된 링크 중 일부는 제휴 링크입니다. 이 링크를 통해 구매한 경우 추가 비용없이 수수료를 받을 수 있습니다. 지원해 주셔서 감사합니다.

빠른 단계

How to select Arduino Nano ESP32 board on Arduino IDE

아두이노 나노 ESP32 시리얼 포트를 선택하세요 (번호는 다를 수 있습니다)

How to select COM port on Arduino IDE

아래 코드를 입력하세요.

void setup() { // 여기에 설정 코드를 넣으세요. 한 번만 실행됩니다: Serial.begin(9600); } void loop() { // 여기에 주요 코드를 넣으세요. 반복해서 실행됩니다: Serial.println("Hello World!"); delay(500); }

아두이노 IDE에서 Upload 버튼을 클릭하여 아두이노 나노 ESP32 보드에 코드를 컴파일하고 업로드하세요.

How to upload Arduino Nano ESP32 code on Arduino IDE

아두이노 IDE에서 시리얼 모니터 열기

How to open serial monitor on Arduino IDE

시리얼 모니터에서 결과를 확인하세요. 아래와 같습니다:

COM6
Send
Hello World! Hello World! Hello World! Hello World!
Autoscroll Show timestamp
Clear output
9600 baud  
Newline  

아두이노 나노 ESP32 코드 수정하기

  • “Hello World!”를 다른 텍스트로 교체하세요. 예를 들어, “Hello newbiely.kr”와 같습니다.
  • 아두이노 IDE에서 Upload 버튼을 클릭하여 코드를 Arduino Nano ESP32 보드에 컴파일하고 업로드하세요.
  • 시리얼 모니터에서 결과를 확인하세요. 아래와 같이 보입니다:
COM6
Send
Hello newbiely.kr Hello newbiely.kr Hello newbiely.kr Hello newbiely.kr
Autoscroll Show timestamp
Clear output
9600 baud  
Newline  

동영상

비디오 제작은 시간이 많이 걸리는 작업입니다. 비디오 튜토리얼이 학습에 도움이 되었다면, 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!