Skip to content

Instantly share code, notes, and snippets.

@squix78
Created December 29, 2015 21:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save squix78/e0a1b7de4340b3a5828e to your computer and use it in GitHub Desktop.
Save squix78/e0a1b7de4340b3a5828e to your computer and use it in GitHub Desktop.
// WIFI
const char* WIFI_SSID = "yourssid";
const char* WIFI_PWD = "yourpassw0rd";
// Setup
const int UPDATE_INTERVAL_SECS = 10 * 60; // Update every 10 minutes
// Display Settings
const int I2C_DISPLAY_ADDRESS = 0x3c;
const int SDA_PIN = D3;
const int SDC_PIN = D4;
// TimeClient settings
const float UTC_OFFSET = 1;
// Wunderground Settings
const boolean IS_METRIC = true;
const String WUNDERGRROUND_API_KEY = "WUNDERGROUND_API_KEY";
const String WUNDERGROUND_COUNTRY = "CH";
const String WUNDERGROUND_CITY = "Zurich";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment