|
@@ -3023,11 +3023,19 @@
|
3023
|
3023
|
//#define ESP3D_WIFISUPPORT // ESP3D Library WiFi management (https://github.com/luc-github/ESP3DLib)
|
3024
|
3024
|
|
3025
|
3025
|
#if EITHER(WIFISUPPORT, ESP3D_WIFISUPPORT)
|
3026
|
|
- #define WIFI_SSID "Wifi SSID"
|
3027
|
|
- #define WIFI_PWD "Wifi Password"
|
3028
|
3026
|
//#define WEBSUPPORT // Start a webserver (which may include auto-discovery)
|
3029
|
3027
|
//#define OTASUPPORT // Support over-the-air firmware updates
|
3030
|
3028
|
//#define WIFI_CUSTOM_COMMAND // Accept feature config commands (e.g., WiFi ESP3D) from the host
|
|
3029
|
+
|
|
3030
|
+ /**
|
|
3031
|
+ * To set a default WiFi SSID / Password, create a file called Configuration_Secure.h with
|
|
3032
|
+ * the following defines, customized for your network. This specific file is excluded via
|
|
3033
|
+ * .gitignore to prevent it from accidentally leaking to the public.
|
|
3034
|
+ *
|
|
3035
|
+ * #define WIFI_SSID "WiFi SSID"
|
|
3036
|
+ * #define WIFI_PWD "WiFi Password"
|
|
3037
|
+ */
|
|
3038
|
+ //#include "Configuration_Secure.h" // External file with WiFi SSID / Password
|
3031
|
3039
|
#endif
|
3032
|
3040
|
|
3033
|
3041
|
/**
|