Skip to content

Commit

Permalink
7.2.0 publish pio
Browse files Browse the repository at this point in the history
  • Loading branch information
ronny-antoon committed Apr 8, 2024
1 parent 99c8b83 commit d4baf10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/UpdateOTA/library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "UpdateOTA",
"version": "7.0.1",
"version": "7.2.0",
"description": "The UpdateOTA Library streamlines the implementation of Over-The-Air firmware updates for ESP8266-based projects. It introduces an abstract class, *UpdateOTAInterface*, defining methods for starting updates, retrieving version numbers, and handling update errors. The library is designed to work seamlessly with ESP8266, Arduino, and other related libraries.",
"keywords": "UpdateOTA, OTA,over the air, update http, updater,arduino ota,firmware update,upload spiffs, ESP32, ronny, antoon, MetaHouse",
"repository": {
Expand Down
6 changes: 1 addition & 5 deletions lib/UpdateOTA/src/UpdateOTA.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,18 +109,14 @@ UpdateOTAError UpdateOTA::getVersionNumber(const char *uRL, char *buffer, uint8_
return UpdateOTAError::NO_INTERNET;
}

Log_Verbose(_logger, "11111111111111111111111111111111111111111111111111111111111111111");
// Set member variables based on input parameters
_uRL = uRL;
_wifiClientSecure = new WiFiClientSecure();
Log_Verbose(_logger, "11111111111111111111111111111111111111111111111111111111111111111");
_httpClient = new HTTPClient();
Log_Verbose(_logger, "11111111111111111111111111111111111111111111111111111111111111111");
UpdateOTAError err = UpdateOTAError::SUCCESS;
Log_Verbose(_logger, "11111111111111111111111111111111111111111111111111111111111111111");
// Process the GET request
err = processGetRequest();
Log_Verbose(_logger, "11111111111111111111111111111111111111111111111111111111111111111");

if (err != UpdateOTAError::SUCCESS)
{
Log_Error(_logger, "UpdateOTA getVersionNumber error: Failed to process GET request, ErrorCode=%d", err);
Expand Down

0 comments on commit d4baf10

Please sign in to comment.