-->
Page 1 of 2

Send AT commands to the ESP8266

PostPosted: Mon Jun 20, 2016 7:30 pm
by yukardo
Hello,

I use the Arduino IDE to upload a web server sketch to the ESP8266 module and it works great.

I want to send AT commands to the module, because I want to restart it to the default configuration.

Could somebody help me?

Thanks.

Re: Send AT commands to the ESP8266

PostPosted: Tue Jun 21, 2016 5:39 am
by eduperez
Your web server sketch wiped out the original AT firmware, so you cannot send any AT command any longer; that is, unless you write your own AT parser and incorporate it into your sketch.

Re: Send AT commands to the ESP8266

PostPosted: Tue Jun 21, 2016 7:27 am
by yukardo
:o Ok. It is good to know for the future.

Do you know what should add to the sketch to get AT command again?

Thanks.

Re: Send AT commands to the ESP8266

PostPosted: Tue Jun 21, 2016 9:49 am
by eduperez
It is not something you can just "add" to your sketch: the AT firmware is a completely different code, it cannot be merged with your sketch.