We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0bd6c4 commit 40706cbCopy full SHA for 40706cb
examples/Inkplate2/Projects/Inkplate2_OpenMeteo_Weather_Station/src/Network.cpp
@@ -1,7 +1,7 @@
1
#include "Network.h"
2
#include <WiFi.h>
3
#include <HTTPClient.h>
4
-#include "weatherData.h"
+#include "WeatherData.h"
5
6
#include <ArduinoJson.h>
7
@@ -36,7 +36,6 @@ String Network::extractDate(String dateTime) {
36
return "????-??-??";
37
}
38
39
-
40
String Network::extractTime(String dateTime) {
41
int tIndex = dateTime.indexOf(' ');
42
if (tIndex != -1 && tIndex + 5 < dateTime.length()) {
0 commit comments