mirror of https://github.com/arendst/Tasmota.git
parent
280dd25a8b
commit
cfd3f3f4f5
|
@ -2197,8 +2197,14 @@ int WebSend(char *buffer)
|
||||||
//snprintf_P(log_data, sizeof(log_data), PSTR("DBG: Uri |%s|"), url.c_str());
|
//snprintf_P(log_data, sizeof(log_data), PSTR("DBG: Uri |%s|"), url.c_str());
|
||||||
//AddLog(LOG_LEVEL_DEBUG);
|
//AddLog(LOG_LEVEL_DEBUG);
|
||||||
|
|
||||||
|
#if defined(ARDUINO_ESP8266_RELEASE_2_3_0) || defined(ARDUINO_ESP8266_RELEASE_2_4_0) || defined(ARDUINO_ESP8266_RELEASE_2_4_1) || defined(ARDUINO_ESP8266_RELEASE_2_4_2)
|
||||||
HTTPClient http;
|
HTTPClient http;
|
||||||
if (http.begin(UrlEncode(url))) { // UrlEncode(url) = |http://192.168.178.86/cm?cmnd=POWER1%20ON|
|
if (http.begin(UrlEncode(url))) { // UrlEncode(url) = |http://192.168.178.86/cm?cmnd=POWER1%20ON|
|
||||||
|
#else
|
||||||
|
WiFiClient http_client;
|
||||||
|
HTTPClient http;
|
||||||
|
if (http.begin(client, UrlEncode(url))) { // UrlEncode(url) = |http://192.168.178.86/cm?cmnd=POWER1%20ON|
|
||||||
|
#endif
|
||||||
int http_code = http.GET(); // Start connection and send HTTP header
|
int http_code = http.GET(); // Start connection and send HTTP header
|
||||||
if (http_code > 0) { // http_code will be negative on error
|
if (http_code > 0) { // http_code will be negative on error
|
||||||
if (http_code == HTTP_CODE_OK || http_code == HTTP_CODE_MOVED_PERMANENTLY) {
|
if (http_code == HTTP_CODE_OK || http_code == HTTP_CODE_MOVED_PERMANENTLY) {
|
||||||
|
@ -2209,8 +2215,7 @@ int WebSend(char *buffer)
|
||||||
for (uint16_t i = 0; i < result.length(); i++) {
|
for (uint16_t i = 0; i < result.length(); i++) {
|
||||||
char text = result.charAt(i);
|
char text = result.charAt(i);
|
||||||
if (text > 31) { // Remove control characters like linefeed
|
if (text > 31) { // Remove control characters like linefeed
|
||||||
mqtt_data[j] = result.charAt(i);
|
mqtt_data[j++] = text;
|
||||||
j++;
|
|
||||||
if (j == sizeof(mqtt_data) -2) { break; }
|
if (j == sizeof(mqtt_data) -2) { break; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2222,7 +2227,7 @@ int WebSend(char *buffer)
|
||||||
} else {
|
} else {
|
||||||
status = 2; // Connection failed
|
status = 2; // Connection failed
|
||||||
}
|
}
|
||||||
http.end();
|
http.end(); // Clean up connection data
|
||||||
} else {
|
} else {
|
||||||
status = 3; // Host not found or connection error
|
status = 3; // Host not found or connection error
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue