-
Notifications
You must be signed in to change notification settings - Fork 367
/
Copy pathOpenWeatherMapCurrent.cpp
311 lines (280 loc) · 7.8 KB
/
OpenWeatherMapCurrent.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
/**The MIT License (MIT)
Copyright (c) 2018 by ThingPulse Ltd., https://thingpulse.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#include <ESPWiFi.h>
#include <WiFiClient.h>
#include "OpenWeatherMapCurrent.h"
OpenWeatherMapCurrent::OpenWeatherMapCurrent() {
}
void OpenWeatherMapCurrent::updateCurrent(OpenWeatherMapCurrentData *data, String appId, String location) {
doUpdate(data, buildPath(appId, "q=" + location));
}
void OpenWeatherMapCurrent::updateCurrent(OpenWeatherMapCurrentData *data, String appId, float lat, float lon) {
doUpdate(data, buildPath(appId, "lat=" + String(lat) + "&lon=" + String(lon)));
}
void OpenWeatherMapCurrent::updateCurrentById(OpenWeatherMapCurrentData *data, String appId, String locationId) {
doUpdate(data, buildPath(appId, "id=" + locationId));
}
String OpenWeatherMapCurrent::buildPath(String appId, String locationParameter) {
String units = metric ? "metric" : "imperial";
return "/data/2.5/weather?" + locationParameter + "&appid=" + appId + "&units=" + units + "&lang=" + language;
}
void OpenWeatherMapCurrent::doUpdate(OpenWeatherMapCurrentData *data, String path) {
unsigned long lostTest = 10000UL;
unsigned long lost_do = millis();
this->weatherItemCounter = 0;
this->data = data;
JsonStreamingParser parser;
parser.setListener(this);
Serial.printf("[HTTP] Requesting resource at http://%s:%u%s\n", host.c_str(), port, path.c_str());
WiFiClient client;
#if defined(ESP8266)
if (client.connect(host, port)) {
#else
if (client.connect(host.c_str(), port)) {
#endif
bool isBody = false;
char c;
Serial.println("[HTTP] connected, now GETting data");
client.print("GET " + path + " HTTP/1.1\r\n"
"Host: " + host + "\r\n"
"Connection: close\r\n\r\n");
while (client.connected() || client.available()) {
if (client.available()) {
if ((millis() - lost_do) > lostTest) {
Serial.println("[HTTP] lost in client with a timeout");
client.stop();
ESP.restart();
}
c = client.read();
if (c == '{' || c == '[') {
isBody = true;
}
if (isBody) {
parser.parse(c);
}
}
// give WiFi and TCP/IP libraries a chance to handle pending events
yield();
}
client.stop();
} else {
Serial.println("[HTTP] failed to connect to host");
}
this->data = nullptr;
}
void OpenWeatherMapCurrent::whitespace(char c) {
Serial.println("whitespace");
}
void OpenWeatherMapCurrent::startDocument() {
Serial.println("start document");
}
void OpenWeatherMapCurrent::key(String key) {
currentKey = String(key);
}
void OpenWeatherMapCurrent::value(String value) {
// "lon": 8.54, float lon;
if (currentKey == "lon") {
this->data->lon = value.toFloat();
}
// "lat": 47.37 float lat;
if (currentKey == "lat") {
this->data->lat = value.toFloat();
}
// weatherItemCounter: only get the first item if more than one is available
if (currentParent == "weather" && weatherItemCounter == 0) {
// "id": 521, weatherId weatherId;
if (currentKey == "id") {
this->data->weatherId = value.toInt();
}
// "main": "Rain", String main;
if (currentKey == "main") {
this->data->main = value;
}
// "description": "shower rain", String description;
if (currentKey == "description") {
this->data->description = value;
}
// "icon": "09d" String icon;
//String iconMeteoCon;
if (currentKey == "icon") {
this->data->icon = value;
this->data->iconMeteoCon = getMeteoconIcon(value);
}
}
// "temp": 290.56, float temp;
if (currentKey == "temp") {
this->data->temp = value.toFloat();
}
// "feels_like": 290.87, float feelsLike;
if (currentKey == "feels_like") {
this->data->feelsLike = value.toFloat();
}
// "pressure": 1013, uint16_t pressure;
if (currentKey == "pressure") {
this->data->pressure = value.toInt();
}
// "humidity": 87, uint8_t humidity;
if (currentKey == "humidity") {
this->data->humidity = value.toInt();
}
// "temp_min": 289.15, float tempMin;
if (currentKey == "temp_min") {
this->data->tempMin = value.toFloat();
}
// "temp_max": 292.15 float tempMax;
if (currentKey == "temp_max") {
this->data->tempMax = value.toFloat();
}
// visibility: 10000, uint16_t visibility;
if (currentKey == "visibility") {
this->data->visibility = value.toInt();
}
// "wind": {"speed": 1.5}, float windSpeed;
if (currentKey == "speed") {
this->data->windSpeed = value.toFloat();
}
// "wind": {deg: 226.505}, float windDeg;
if (currentKey == "deg") {
this->data->windDeg = value.toFloat();
}
// "clouds": {"all": 90}, uint8_t clouds;
if (currentKey == "all") {
this->data->clouds = value.toInt();
}
// "dt": 1527015000, uint64_t observationTime;
if (currentKey == "dt") {
this->data->observationTime = value.toInt();
}
// "country": "CH", String country;
if (currentKey == "country") {
this->data->country = value;
}
// "sunrise": 1526960448, uint32_t sunrise;
if (currentKey == "sunrise") {
this->data->sunrise = value.toInt();
}
// "sunset": 1527015901 uint32_t sunset;
if (currentKey == "sunset") {
this->data->sunset = value.toInt();
}
// "name": "Zurich", String cityName;
if (currentKey == "name") {
this->data->cityName = value;
}
}
void OpenWeatherMapCurrent::endArray() {
}
void OpenWeatherMapCurrent::startObject() {
currentParent = currentKey;
}
void OpenWeatherMapCurrent::endObject() {
if (currentParent == "weather") {
weatherItemCounter++;
}
currentParent = "";
}
void OpenWeatherMapCurrent::endDocument() {
}
void OpenWeatherMapCurrent::startArray() {
}
String OpenWeatherMapCurrent::getMeteoconIcon(String icon) {
// clear sky
// 01d
if (icon == "01d") {
return "B";
}
// 01n
if (icon == "01n") {
return "C";
}
// few clouds
// 02d
if (icon == "02d") {
return "H";
}
// 02n
if (icon == "02n") {
return "4";
}
// scattered clouds
// 03d
if (icon == "03d") {
return "N";
}
// 03n
if (icon == "03n") {
return "5";
}
// broken clouds
// 04d
if (icon == "04d") {
return "Y";
}
// 04n
if (icon == "04n") {
return "%";
}
// shower rain
// 09d
if (icon == "09d") {
return "R";
}
// 09n
if (icon == "09n") {
return "8";
}
// rain
// 10d
if (icon == "10d") {
return "Q";
}
// 10n
if (icon == "10n") {
return "7";
}
// thunderstorm
// 11d
if (icon == "11d") {
return "P";
}
// 11n
if (icon == "11n") {
return "6";
}
// snow
// 13d
if (icon == "13d") {
return "W";
}
// 13n
if (icon == "13n") {
return "#";
}
// mist
// 50d
if (icon == "50d") {
return "M";
}
// 50n
if (icon == "50n") {
return "M";
}
// Nothing matched: N/A
return ")";
}