From 3de73b2c980e6289a72f5d56eb0ab3da88086167 Mon Sep 17 00:00:00 2001 From: Kai Lauterbach Date: Wed, 7 Sep 2022 15:33:48 +0200 Subject: [PATCH] Update of the example config file --- firmware/config_user.h.example | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/firmware/config_user.h.example b/firmware/config_user.h.example index b81c72f..e663194 100755 --- a/firmware/config_user.h.example +++ b/firmware/config_user.h.example @@ -13,6 +13,7 @@ String DEVICE_NAME = "weatherstation"; // Enable/Disable features +#define USE_WIFIMANAGER //#define WEBUPDATER_FEATURE #define INFLUXDB_FEATURE #define INFLUXDB_VERSION 1 // 1 or 2 @@ -76,5 +77,17 @@ const char *INFLUXDB_TOKEN = "your api token"; // china aliexpress anemometer settings (calculation unknown) //#define WINDSPEED_FACTOR 2.4 +#ifndef USE_WIFIMANAGER + +// Set IP address +IPAddress local_IP(192, 168, 178, 123); +// Set your Gateway IP address +IPAddress gateway(192, 168, 178, 1); +// Set subnet mask +IPAddress subnet(255, 255, 255, 0); + +const char* ssid = "My-WLAN-SSID"; // WLAN Netzwerk +const char* password = "My-Passphrase"; // WLAN Passphrase + #endif