blob: 30304f0925830df8434ccb0a67534418641dde88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#define WIFI_SSID ""
#define WIFI_PASSWORD ""
#define NTP_SERVER "pool.ntp.org" // Don't do a D-Link
#define NTP_UPDATE_INTERVAL 60000
#define HOSTNAME "VFD-clock"
#ifndef WIFI_SSID
#error You must specify a WiFi SSID above, remember to uncomment the line
#endif
#ifndef WIFI_PASSWORD
#error You must specify a WiFi password above, remember to uncomment the line
#endif
#ifndef NTP_SERVER
#error You must specify an NTP server above, remember to uncomment the line
#endif
|