Skip to content

Commit 428f11d

Browse files
committed
Add ESP8266HTTPClient.h include to ion file
1 parent da6df96 commit 428f11d

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

examples/MetOfficeDemo/oneDayForecaster.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,13 @@
3030
* You will need to get an API key and location id from the Met Office, as described in the
3131
* client, and add them to settings.h together with wifi details and an OTA password if you want
3232
* to use that.
33-
*
33+
*
3434
*/
3535

3636
#include <Arduino.h>
3737
#include <SD.h>
3838
#include <ESP8266WiFi.h>
39+
#include <ESP8266HTTPClient.h>
3940
#include <ArduinoOTA.h>
4041
#include <ESP8266mDNS.h>
4142
#include <Adafruit_GFX.h>

examples/PlaneSpotterDemo/PlaneSpotterDemo.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ See more at http://blog.squix.ch
2424
*/
2525
#include <Arduino.h>
2626
#include <ESP8266WiFi.h>
27+
#include <ESP8266HTTPClient.h>
2728
#include <Ticker.h>
2829
#include <JsonListener.h>
2930
#include <ArduinoOTA.h>
@@ -44,7 +45,7 @@ See more at http://blog.squix.ch
4445

4546
/**************
4647
* Required Libraries:
47-
* - Weather Station by Daniel Eichhorn
48+
* - Weather Station by Daniel Eichhorn
4849
* - WifiManager by tzapu
4950
* - ESP8266 OLED Driver by Daniel Eichhorn, Fabrice Weinberg
5051
* - Json Streaming Parser by Daniel Eichhorn

examples/WorldClockDemo/WorldClockDemo.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ See more at https://blog.squix.org
2424
*/
2525

2626
#include <ESP8266WiFi.h>
27+
#include <ESP8266HTTPClient.h>
2728
#include <Ticker.h>
2829
#include <JsonListener.h>
2930
#include <SSD1306Wire.h>

0 commit comments

Comments
 (0)