/** * reuseConnection.ino * * Created on: 22.11.2015 * */ #include #include #include #include WiFiMulti wifiMulti; HTTPClient http; void setup() { Serial.begin(115200); Serial.println(); Serial.println(); Serial.println(); for (uint8_t t = 4; t > 0; t--) { Serial.printf("[SETUP] WAIT %d...\n", t); Serial.flush(); delay(1000); } wifiMulti.addAP("SSID", "PASSWORD"); // allow reuse (if server supports it) http.setReuse(true); } void loop() { // wait for WiFi connection if ((wifiMulti.run() == WL_CONNECTED)) { http.begin("http://192.168.1.12/test.html"); //http.begin("192.168.1.12", 80, "/test.html"); int httpCode = http.GET(); if (httpCode > 0) { Serial.printf("[HTTP] GET... code: %d\n", httpCode); // file found at server if (httpCode == HTTP_CODE_OK) { http.writeToStream(&Serial); } } else { Serial.printf("[HTTP] GET... failed, error: %s\n", http.errorToString(httpCode).c_str()); } http.end(); } delay(1000); }