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