mirror of https://github.com/sqfmi/Watchy.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
976 B
C
27 lines
976 B
C
#ifndef SETTINGS_H
|
|
#define SETTINGS_H
|
|
|
|
//Weather Settings
|
|
#define CITY_ID "5128581" //New York City https://openweathermap.org/current#cityid
|
|
#define OPENWEATHERMAP_APIKEY "f058fe1cad2afe8e2ddc5d063a64cecb" //use your own API key :)
|
|
#define OPENWEATHERMAP_URL "http://api.openweathermap.org/data/2.5/weather?id=" //open weather api
|
|
#define TEMP_UNIT "metric" //metric = Celsius , imperial = Fahrenheit
|
|
#define TEMP_LANG "en"
|
|
#define WEATHER_UPDATE_INTERVAL 30 //must be greater than 5, measured in minutes
|
|
//NTP Settings
|
|
#define NTP_SERVER "pool.ntp.org"
|
|
#define GMT_OFFSET_SEC 3600 * -5 //New York is UTC -5 EST, -4 EDT, will be overwritten by weather data
|
|
|
|
watchySettings settings{
|
|
.cityID = CITY_ID,
|
|
.weatherAPIKey = OPENWEATHERMAP_APIKEY,
|
|
.weatherURL = OPENWEATHERMAP_URL,
|
|
.weatherUnit = TEMP_UNIT,
|
|
.weatherLang = TEMP_LANG,
|
|
.weatherUpdateInterval = WEATHER_UPDATE_INTERVAL,
|
|
.ntpServer = NTP_SERVER,
|
|
.gmtOffset = GMT_OFFSET_SEC,
|
|
};
|
|
|
|
#endif
|