11 lines
276 B
C
11 lines
276 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
|
|
|
|
#endif
|