From af2309cdb713e7cb782c5495ec4cdf6d7da914a5 Mon Sep 17 00:00:00 2001 From: "Ansgar [Hiajen]" Date: Tue, 8 Mar 2022 17:07:08 +0100 Subject: [PATCH] add missing config file --- src/proj_conf.h | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/proj_conf.h diff --git a/src/proj_conf.h b/src/proj_conf.h new file mode 100644 index 0000000..072912f --- /dev/null +++ b/src/proj_conf.h @@ -0,0 +1,7 @@ +//SSID and Password of your WiFi router +const char* ssid = ""; +const char* password = ""; +const long interval = 600000; // ms till recalculating prognose +int isNorthern = true; // norther or southerm hemisphere +int minAvgPressure = 1030; // min pressure in your area +int maxAvgPressure = 1020; // max pressure in your area