blob: f44c95219e94f56e339a59aaf6aad3dcc6461d9e (
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 "7-segment-esp-ws2811"
#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
|