Post topics, source code that relate to the Arduino Platform

User avatar
By selem
#21890 For starters and debugging purposes, replace your loop() with the following and check the output after making the jquery request:

Code: Select allvoid loop() {
  String content = "";
  char character;

  while(esp8266.available()) {
      character = esp8266.read();
      content.concat(character);
      delay(10);
  }

  if (content != "") {
    Serial.println(content);
  }
}