/* -*- C++ -*- * Euler - A watchy firmware for crazy people. * * Copyright (c) 2021 Sameer Rahmani * * 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. */ #ifndef SETTINGS_H #define SETTINGS_H //Weather Settings #define CITY_ID "2964574" //Dublin Ireland 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 * 1 //New York is UTC -5 EST, -4 EDT, will be overwritten by weather data // wifi #define WIFI_AP_TIMEOUT 60 #define WIFI_AP_SSID "Watchy AP" 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, .vibrateOClock = true, }; #endif