-
Notifications
You must be signed in to change notification settings - Fork 62
Open
Labels
topic: documentationRelated to documentation for the projectRelated to documentation for the projecttype: imperfectionPerceived defect in any part of projectPerceived defect in any part of project
Description
| status = WiFi.begin(ssid); |
should be:
status = WiFi.begin(ssid, pass);Although the code is valid for an open access point, the presence of this line in the sketch clearly indicates the sketch was intended for use with a WPA encrypted access point:
| char pass[] = "secretPassword"; // your network password (use for WPA, or use as key for WEP) |
The user will be confused to find the board is unable to connect to the access point even though they set the correct password.
Metadata
Metadata
Assignees
Labels
topic: documentationRelated to documentation for the projectRelated to documentation for the projecttype: imperfectionPerceived defect in any part of projectPerceived defect in any part of project