We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f4bcbe commit 93b7325Copy full SHA for 93b7325
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 = "KHMH";
13
-const char *passPhrase = "hk-2012FD2926";
+#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