From bba3635912b334e17b270907b5b4a1d6dfd4be1f Mon Sep 17 00:00:00 2001 From: user Date: Fri, 15 Dec 2023 14:59:50 +0100 Subject: initial commit. clock works + ntp, animations and fade --- include/user_settings.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 include/user_settings.h (limited to 'include/user_settings.h') diff --git a/include/user_settings.h b/include/user_settings.h new file mode 100644 index 0000000..1538f7d --- /dev/null +++ b/include/user_settings.h @@ -0,0 +1,18 @@ +// #define WIFI_SSID "" +// #define WIFI_PASSWORD "" + +// #define NTP_SERVER "pool.ntp.org" // Don't do a D-Link +#define NTP_UPDATE_INTERVAL 60000 + +#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 + -- cgit v1.2.3