You are on page 1of 1

� How to program ESP01.

( How do we receive /response back and process it )


e.g: void setup()
{
pinMode(LED,OUTPUT);
pinMode(button,INPUT);
Serial.begin(9600);
mySerial.begin(9600);
SendCommand(�AT+RST�, �Ready�);
delay(5000);
SendCommand(�AT+CWMODE=1?,�OK�);
SendCommand(�AT+CIFSR�, �OK�);
SendCommand(�AT+CIPMUX=1?,�OK�);
SendCommand(�AT+CIPSERVER=1,80?,�OK�);
}

-What does this �Tools-> Board-> GenericESPP� do. Why cant this be used versus the
one above.
and other related information.
An article highlighting such basic concepts would help.
Thanks

You might also like