User manual

void setup()
{
// Open serial communications and wait for port to open:
Serial.begin(19200);
// set the data rate for the SoftwareSerial port
esp8266.begin(19200);
if (!espConfig()) serialDebug();
else debug("Config OK");
if (sendCom("AT+PING=\"www.google.de\"", "OK"))
{
Serial.println("Ping OK");
digitalWrite(13, HIGH);
}
else
{
Serial.println("Ping Error");
}
}
void loop() // run over and over
{
//Start serial Debug Mode - Type Commandos over serial Monitor
serialDebug();
}