Skip to content

Commit

Permalink
Merge pull request #1 from derbmann/patch-1
Browse files Browse the repository at this point in the history
SSID and PW max lenght
  • Loading branch information
jameszah authored Jan 20, 2023
2 parents 5fb616f + f3cf052 commit bea30c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CameraWebServerRecorder.ino
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,9 @@ void start_wifi() {
String cssid;
String cssid2;
String cpass;
char ssidch[20];
char ssidch2[20];
char passch[20];
char ssidch[32];
char ssidch2[32];
char passch[64];

File config_file = SD_MMC.open("/secret.txt", "r");
if (config_file) {
Expand Down

0 comments on commit bea30c5

Please sign in to comment.