We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5990f9b commit cbf8e1dCopy full SHA for cbf8e1d
libraries/ESP8266WebServer/examples/WebServer/secrets.h
@@ -9,5 +9,10 @@
9
// ssid and passPhrase can be used when compiling for a specific environment as a 2. option.
10
11
// add you wifi network name and PassPhrase or use WiFi Manager
12
-const char *ssid = "";
13
-const char *passPhrase = "";
+#ifndef STASSID
+#define STASSID "ssid"
14
+#define STAPSK "psk"
15
+#endif
16
+
17
+const char *ssid = STASSID;
18
+const char *passPhrase = STAPSK;
0 commit comments