Merge pull request #345 from mirko12/master

Changed PW size to 64+1 chars
This commit is contained in:
martin-ger
2019-09-21 08:36:31 +02:00
committed by GitHub
+1 -1
View File
@@ -41,7 +41,7 @@ typedef struct {
/* Below variables are specific to my code */ /* Below variables are specific to my code */
uint8_t ssid[32]; // SSID of the AP to connect to uint8_t ssid[32]; // SSID of the AP to connect to
uint8_t password[64]; // Password of the network uint8_t password[65]; // Password of the network
uint8_t auto_connect; // Should we auto connect uint8_t auto_connect; // Should we auto connect
uint8_t bssid[6]; // Optional: BSSID the AP uint8_t bssid[6]; // Optional: BSSID the AP
uint8_t sta_hostname[32]; // Name of the station uint8_t sta_hostname[32]; // Name of the station