Reduced the AP scan max results

This commit is contained in:
Stefan Kremser
2017-02-27 21:20:15 +01:00
parent 5aa2fcf2ff
commit fc1893521f
4 changed files with 34 additions and 8 deletions

View File

@@ -83,7 +83,7 @@ void Settings::info(){
String Settings::get(){
String json = "{";
//\"
json += "\"ssid\":\""+ssid+"\",";
json += "\"password\":\""+password+"\",";
json += "\"deauthReason\":"+(String)(int)deauthReason+",";
@@ -101,8 +101,7 @@ String Settings::get(){
json += "}";
if(i!=nameList.len-1) json += ",";
}
json += "]";
json += "}";
json += "] }";
return json;
}