15 lines
390 B
C
15 lines
390 B
C
#ifndef WIFI_CREDENTIALS_H
|
|
#define WIFI_CREDENTIALS_H
|
|
|
|
const char WIFI_SSID[] = "your-wifi-name";
|
|
const char WIFI_PASSWORD[] = "your-wifi-password";
|
|
|
|
// Offset from UTC in seconds. Examples: Finland winter 7200, Finland summer 10800.
|
|
#define TIME_UTC_OFFSET_SECONDS 0
|
|
|
|
// Coordinates used for the weather forecast.
|
|
#define WEATHER_LATITUDE 60.1699
|
|
#define WEATHER_LONGITUDE 24.9384
|
|
|
|
#endif
|