We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7709d9b commit c27fd01Copy full SHA for c27fd01
examples/AP_SimpleWebServer/AP_SimpleWebServer.ino
@@ -50,8 +50,8 @@ void setup() {
50
Serial.print("Creating access point named: ");
51
Serial.println(ssid);
52
53
- // Create WEP network. Change this line if you want to create an open network:
54
- if (WiFi.beginAP(ssid, keyIndex, pass) != WL_CONNECTED) {
+ // Create open network. Change this line if you want to create an WEP network:
+ if (WiFi.beginAP(ssid) != WL_CONNECTED) {
55
Serial.println("Creating access point failed");
56
// don't continue
57
while (true);
0 commit comments