top of page

ESP Part 2 : Communicate directly to ESP8266 using Serial Monitor

Updated: Jul 24, 2022

In this tutorial, we will be looking at how to communicate with ESP8266 directly using Serial Monitor from Arduino IDE.


Use the below connection to setup your ESP8266.

  • ESP VCC connect Arduino 3.3V

  • ESP GND connect Arduino GND

  • ESP TX connect Arduino TX Pin 2

  • ESP RX connect Arduino RX Pin 3

It is important to note that TX and RX connection should be disconnected when uploading code.


Upload the below code into Arduino :

void setup(){
}
    
void loop(){
}

Once uploaded, you can insert any AT command in the Serial Monitor to directly communicate to ESP8266.


Refer examples below :





For more detailed instruction, feel free to check out my YouTube video below :






 

댓글

댓글을 불러올 수 없습니다.
기술적인 오류가 발생하였습니다. 연결 상태를 확인한 다음 페이지를 새로고침해보세요.
bottom of page