From 15041873c2cbdf987098f1c8f61cd2f5bed805ac Mon Sep 17 00:00:00 2001 From: blittan Date: Tue, 8 Jan 2019 22:12:09 +0100 Subject: [PATCH] Clearer meaning of Static or DHCP --- sonoff/my_user_config.h | 2 +- sonoff/user_config_override_sample.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sonoff/my_user_config.h b/sonoff/my_user_config.h index 4f7c97dc8..dd06af48d 100644 --- a/sonoff/my_user_config.h +++ b/sonoff/my_user_config.h @@ -56,7 +56,7 @@ #define SAVE_STATE 1 // [SetOption0] Save changed power state to Flash (0 = disable, 1 = enable) // -- Wifi ---------------------------------------- -#define WIFI_IP_ADDRESS "0.0.0.0" // [IpAddress1] Set to 0.0.0.0 for using DHCP or IP address +#define WIFI_IP_ADDRESS "0.0.0.0" // [IpAddress1] Set to 0.0.0.0 for using DHCP or enter a static IP address #define WIFI_GATEWAY "192.168.1.1" // [IpAddress2] If not using DHCP set Gateway IP address #define WIFI_SUBNETMASK "255.255.255.0" // [IpAddress3] If not using DHCP set Network mask #define WIFI_DNS "192.168.1.1" // [IpAddress4] If not using DHCP set DNS IP address (might be equal to WIFI_GATEWAY) diff --git a/sonoff/user_config_override_sample.h b/sonoff/user_config_override_sample.h index 678ad922e..b2b403e1a 100644 --- a/sonoff/user_config_override_sample.h +++ b/sonoff/user_config_override_sample.h @@ -74,7 +74,7 @@ Examples : #ifdef MY_IP #undef WIFI_IP_ADDRESS -#define WIFI_IP_ADDRESS MY_IP // Set to 0.0.0.0 for using DHCP or IP address +#define WIFI_IP_ADDRESS MY_IP // Set to 0.0.0.0 for using DHCP or enter a static IP address #endif #ifdef MY_GW