Skip to main content

Only getting error from ESP8266 AT commands Ask Question

deleted 2 characters in body
Source Link

I am trying to get the ESP8266 work with Arduino AT commands. I am using the due. How do I get the ESP8266 to respond with anything other than ERROR?

Here is the current serial output:

AT
ERROR

Here is my code:

void setup() {
    Serial.begin(9600);     
    Serial3.begin(115200); //Manufacture said this is the correct baud rate      
}

void loop() {
    if ( Serial3.available() ) {  Serial.write( Serial3.read() );  }

    if ( Serial.available() )  {  Serial3.write( Serial.read() );  }
}
void setup() {
    Serial.begin(9600);     
    Serial3.begin(115200); //Manufacture said this is the correct baud rate      
}

void loop() {
    if ( Serial3.available() ) {  Serial.write( Serial3.read() );  }

    if ( Serial.available() )  {  Serial3.write( Serial.read() );  }
}

Here are my pin connections:

RX3  -> ESP TX
TX3 - -> ESP RX
GND  -> GND
3.3V -> CH_PD + VCC

I am trying to get the ESP8266 work with Arduino AT commands. I am using the due. How do I get the ESP8266 to respond with anything other than ERROR?

Here is the current serial output:

AT
ERROR

Here is my code:

void setup() {
    Serial.begin(9600);     
    Serial3.begin(115200); //Manufacture said this is the correct baud rate      
}

void loop() {
    if ( Serial3.available() ) {  Serial.write( Serial3.read() );  }

    if ( Serial.available() )  {  Serial3.write( Serial.read() );  }
}

Here are my pin connections:

RX3  -> ESP TX
TX3 - > ESP RX
GND  -> GND
3.3V -> CH_PD + VCC

I am trying to get the ESP8266 work with Arduino AT commands. I am using the due. How do I get the ESP8266 to respond with anything other than ERROR?

Here is the current serial output:

AT
ERROR

Here is my code:

void setup() {
    Serial.begin(9600);     
    Serial3.begin(115200); //Manufacture said this is the correct baud rate      
}

void loop() {
    if ( Serial3.available() ) {  Serial.write( Serial3.read() );  }

    if ( Serial.available() )  {  Serial3.write( Serial.read() );  }
}

Here are my pin connections:

RX3  -> ESP TX
TX3  -> ESP RX
GND  -> GND
3.3V -> CH_PD + VCC
added 8 characters in body
Source Link
gre_gor
  • 1.7k
  • 4
  • 18
  • 30

I am trying to get the ESP8266 work with Arduino AT commands. I am using the due. How do I get the ESP8266 to respond with anything other than ERROR?

Here is the current serial output:

AT
ERROR

Here is my code:

void setup() {
    Serial.begin(9600);     
    Serial3.begin(115200); //Manufacture said this is the correct baud rate      
}

void loop() {
    if ( Serial3.available() ) {  Serial.write( Serial3.read() );  }

    if ( Serial.available() )  {  Serial3.write( Serial.read() );  }
}
void setup() {
    Serial.begin(9600);     
    Serial3.begin(115200); //Manufacture said this is the correct baud rate      
}

void loop() {
    if ( Serial3.available() ) {  Serial.write( Serial3.read() );  }

    if ( Serial.available() )  {  Serial3.write( Serial.read() );  }
}

Here are my pin connections:

RX3  -> ESP TX
TX3 - > ESP RX
GND  -> GND
3.3V -> CH_PD + VCC

Any help is appreciated.

I am trying to get the ESP8266 work with Arduino AT commands. I am using the due. How do I get the ESP8266 to respond with anything other than ERROR?

Here is the current serial output:

AT
ERROR

Here is my code:

void setup() {
    Serial.begin(9600);     
    Serial3.begin(115200); //Manufacture said this is the correct baud rate      
}

void loop() {
    if ( Serial3.available() ) {  Serial.write( Serial3.read() );  }

    if ( Serial.available() )  {  Serial3.write( Serial.read() );  }
}

Here are my pin connections:

RX3 -> ESP TX
TX3 -> ESP RX
GND -> GND
3.3V -> CH_PD + VCC

Any help is appreciated.

I am trying to get the ESP8266 work with Arduino AT commands. I am using the due. How do I get the ESP8266 to respond with anything other than ERROR?

Here is the current serial output:

AT
ERROR

Here is my code:

void setup() {
    Serial.begin(9600);     
    Serial3.begin(115200); //Manufacture said this is the correct baud rate      
}

void loop() {
    if ( Serial3.available() ) {  Serial.write( Serial3.read() );  }

    if ( Serial.available() )  {  Serial3.write( Serial.read() );  }
}

Here are my pin connections:

RX3  -> ESP TX
TX3 - > ESP RX
GND  -> GND
3.3V -> CH_PD + VCC
Source Link
Loading