From a2f7d1748abb1c891498906ddefdbe42f9433a49 Mon Sep 17 00:00:00 2001 From: leblane Date: Fri, 16 Jun 2023 17:00:15 +0300 Subject: [PATCH] Remove old debugging printlns from weather page --- src/WatchFacePages/Weather.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/WatchFacePages/Weather.cpp b/src/WatchFacePages/Weather.cpp index 95966a9..63559d2 100644 --- a/src/WatchFacePages/Weather.cpp +++ b/src/WatchFacePages/Weather.cpp @@ -279,8 +279,6 @@ void WatchFacePages::Weather::Resync() // Grr. wttr.in does a redirect to HTTPS if your agent isn't curl client.setUserAgent("curl/8.0.1"); - Serial.println(url.str().c_str()); - client.begin(url.str().c_str()); int httpCode = client.GET(); m_features.wifi.Disconnect(); @@ -313,7 +311,6 @@ void WatchFacePages::Weather::Resync() m_currentWeatherCondition[parts[0].length()] = '\0'; std::string temperature = parts[1].substr(1, parts[1].length() - 4); - Serial.println(temperature.c_str()); m_currentTemperature = std::stoi(temperature); std::string humidity = parts[2].substr(0, parts[2].length() - 1);