blob: 1e505b28f8695ff90ce874e2c4c1ed39b7042690 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#define WIFI_SSID ""
#define WIFI_PASS ""
#define DEBUG 1
#define NTP_SERV_1 "pool.ntp.org"
#define NTP_SERV_2 "time.nist.gov"
// TimeZone rule for Europe/Rome including daylight adjustment rules (optional)
// See https://github.com/esp8266/Arduino/blob/master/cores/esp8266/TZ.h
#define TZ "CET-1CEST,M3.5.0,M10.5.0/3"
// Create the file local_config.h in this directory and override all of the
// #defines you need
#include "local_config.h"
|