0

Here is what I am doing

Arduino(UNO)--------Esp8266
3.3 v -- vcc
TX -- RX
RX -- TX
3.3 v -- EN(ch_pd)
GND -- GND 

there is no blinking of LED on Esp8266, sometimes the LED is on and sometimes it is not. And when I send "AT" command using Serial of Arduino IDE, only RX light of Arduino blinks, TX is not blinking and there is no response of that command. I am having 3.3 voltage on my Vcc pin of Esp8266 but the voltage on the TX and RX pins of Esp8266 is 5 volts, I know that i can reduce this to 3.3 voltage by using a voltage regulator but my question is why there is no blinking on the module even when i have supplied the proper 3.3 voltage and GND? What's the difference between the blinking and a still LED on Esp8266? I have tried every tutorial on internet. No help at all. Right now I am so exhausted that I want to quit.If you can help in solving the problem, I would be very thankful to you sir.

asked Oct 9, 2016 at 13:56
2
  • arduino.stackexchange.com/q/16917/972 Commented Oct 10, 2016 at 13:50
  • The UNO runs on 5V and the ESP on 3.3V. When you send data to the ESP, you're sending it over 5V. When the ESP sends data to the UNO, it uses 3.3V. So, these voltages don't match. I suggest using a logic level converter to change the voltages of communication between the UNO and the ESP. Commented Oct 11, 2016 at 13:54

1 Answer 1

1

When you are using Arduino board just as USB --> RS232 converter to send AT commands from PC to ESP8266 you have to connect TX to TX and RX to RX. But when you want communication between microcontroler and ESP then you have to connect TX to RX and RX to TX. Here I explained that in details.

answered Dec 5, 2016 at 6:12

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.