From b294611f10e4aeb9514dbf9c165e5c58aa0d4b38 Mon Sep 17 00:00:00 2001 From: Christos Themelis Date: Sat, 24 Jan 2026 19:29:06 +0200 Subject: [PATCH] Create user_setup.h.example --- include/user_setup.h.example | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 include/user_setup.h.example diff --git a/include/user_setup.h.example b/include/user_setup.h.example new file mode 100644 index 000000000..546f53f94 --- /dev/null +++ b/include/user_setup.h.example @@ -0,0 +1,20 @@ +// Notes: +// Create a copy of this file and name it "user_setup.h" +// Setup your WiFi SSID and the password +// Select your timezone +// Write your town. You can find supported towns in Open Weather website +// Write your API KEY from Open Weather also take a look at configuration.h file for more settings. +// +// The file "user_setup.h" is in git ignore. Your data will stay local + +//#################### EDIT THIS ################### +// WiFi +#define USER_WiFiSSID "MyWiFiSSID" +#define USER_WiFiPassword "MyWiFiPassword" +// Clock +#define USER_TimeZone 2 +// Open Weather +#define USER_WeatherTown "Thessaloniki" +#define USER_WeatherAPI "000000000000000000000000000000" +#define USER_WeatherUnits "metric" +//#################### end of edits ###################