Added MQTT client, better speaker handling, fixed bug in FTP server, ...

This commit is contained in:
2019-08-14 21:01:01 +02:00
parent dcbb42f5ef
commit 5f682c303f
54 changed files with 4945 additions and 52 deletions

View File

@ -472,13 +472,12 @@ boolean FtpServer::processCommand()
// if(levels){
// listDir(fs, file.name(), levels -1);
// }
data.println(String("Type=dir;modify=20000101160656; ") + file.name());
data.println(String("Type=dir;perm=cdelmp;modify=20000101160656; ") + file.name());
} else {
String fn, fs;
fn = file.name();
fn.remove(0, 1);
fs = String(file.size());
data.println( "Type=file;Size=" + fs + ";"+"modify=20000101160656;" +" " + fn);
data.println( "Type=file;perm=drw;Size=" + fs + ";modify=20000101160656;" +" " + fn);
nm ++;
}
file = root.openNextFile();

File diff suppressed because it is too large Load Diff