Skip to content

Commit 789eb5a

Browse files
committed
added plain demo for the WundergroundClient using the new url scheme of wunderground @see commit b901dbe
1 parent b5fe49a commit 789eb5a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/WundergroundClientPlainDemo/WundergroundClientPlainDemo.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ SOFTWARE.
3131
/**
3232
* Wunderground Settings
3333
*/
34-
const String WUNDERGRROUND_API_KEY = "e5ad56464a0ca81c"; // "<YOUR-WUNDERGROUND-API-KEY>";
34+
const String WUNDERGRROUND_API_KEY = "<YOUR-WUNDERGROUND-API-KEY>";
3535
const boolean IS_METRIC = true;
3636
// to retrieve the ZMW-Code use
3737
// http://api.wunderground.com/api/<API-KEY>/conditions/q/<COUNTRY-CODE>/<CITY-NAME>.json
@@ -47,8 +47,8 @@ WundergroundClient wunderground(IS_METRIC);
4747
* WiFi Settings
4848
*/
4949
const char* ESP_HOST_NAME = "esp-" + ESP.getFlashChipId();
50-
const char* WIFI_SSID = "rigaer61HH-3"; // "<YOUR-WIFI-SSID>";
51-
const char* WIFI_PASSWORD = "alexisalleinzuhaus"; // "<YOUR-WIFI-PASSWORD>";
50+
const char* WIFI_SSID = "<YOUR-WIFI-SSID>";
51+
const char* WIFI_PASSWORD = "<YOUR-WIFI-PASSWORD>";
5252

5353
// initiate the WifiClient
5454
WiFiClient wifiClient;

0 commit comments

Comments
 (0)