Serial.print("IP address: "); Serial.println(WiFi.localIP()); //IP address assigned to your ESP server.on("/", handleRoot); //Which routine to handle at root location. This is display page server.on("/setLED", handleLED); server.on("/readADC", handleADC); server.begin(); //...