MartinNohr
MartinNohr
This code used to work: FsFile download = SD.open("/" + filename); if (download) { server.sendHeader("Content-Type", "text/text"); server.sendHeader("Content-Disposition", "attachment; filename=" + filename); server.sendHeader("Connection", "close"); //server.streamFile(download, "application/octet-stream"); server.streamFile(download, "image/bmp"); download.close(); } server...
The code for changing the volume name does not work. There is a crash in updateCatalog() when it gets called from setVolumeName().
The Gray M5Stack is discontinued, I tried the Black model and found that the SD card reader no longer works. Does anybody know why?
Would it be possible to make this run on the M5Paper kit?
There should be a call to return the number of items in the menu. A call is also useful that will return the name of an item using the index....
You have an arithmetic overflow causing the SD card size to be shown incorrectly. ez.canvas.print("SD size:"); ez.canvas.x(tab); ez.canvas.println(String((long)SD.cardSize() / 1000000) + " MB"); Should be: ez.canvas.print("SD size:"); ez.canvas.x(tab); ez.canvas.println(String((long)(SD.cardSize() /...
I can't change the header title, it always stays at the original value. ezMenu fileMenu("Files"); ez.header.title("abc"); Serial.println("title: " + ez.header.title()); int retNum = fileMenu.runOnce(); I have also tried the ez.header.show(),...
It would be nice for long menu lists (I have a file selection one) if you held the up or down button for a long time it would start auto...
I switched to the latest version from 2.0.7. I am getting this error now: WebServer.h: 141:5: error: call to 'StreamFile::name' declared with attribute error: use getName(name, size) _streamFileCore(file.size(), file.name(), contentType)
I haven't been able to make this work with the Mega and LCD touch screen. Anybody had any luck doing that?