Sign up ×
Arduino Stack Exchange is a question and answer site for developers of open-source hardware and software that is compatible with Arduino. It's 100% free, no registration required.

I have:

Problem: I see SoftAP and can connecting to it. But i can't send AT-commands to ESP8266 from Arduino. I use Arduino app v.1.6.5 for send command to ESP8266 via Arduino. But i don't get answer. And ESP8266 doesn't blinking.

I use this scheme:

Scheme for connecting Arduino and ESP8266

Please, help me. I'm trying to fix this is very time consuming.

share|improve this question
up vote 1 down vote accepted

I had the same problem. I used SoftwareSerial library, so you should set baud rate as 115200 for communication with esp8266. It might look like this:

#include <SoftwareSerial.h>

SoftwareSerial esp8266(2,3); 

void setup()
{
  Serial.begin(9600);
  esp8266.begin(115200);
}

It helped in my case.

share|improve this answer

I had the same problem. I solved it doing the following:

Connect Arduino TX to a voltage divider (to get 3,3V) and then to TX on ESP8266 Connect Arduino RX to RX on ESP8266

It should work!.

Please read the information on this link http://rancidbacon.com/files/kiwicon8/ESP8266_WiFi_Module_Quick_Start_Guide_v_1.0.4.pdf

share|improve this answer
1  
From memory the ESP8266 can pull more current than the Arduino can supply so you need a separate 3.3V supply. You also need 3.3V/5V logic level shifters on ALL you connections between the Arduino and the ESP, because the ESP of the different in logic levels. – Matt Oct 26 '15 at 12:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.