mirror of
https://github.com/s00500/ESPUI.git
synced 2024-11-24 12:20:55 +00:00
Make prepareFilesystem.ino more verbose so it shows the files in LittleFS
This commit is contained in:
parent
957faef52e
commit
beb4135616
@ -3,7 +3,12 @@
|
|||||||
void setup(void)
|
void setup(void)
|
||||||
{
|
{
|
||||||
Serial.begin(115200);
|
Serial.begin(115200);
|
||||||
ESPUI.prepareFileSystem();
|
ESPUI.setVerbosity(Verbosity::Verbose); //Enable verbose output so you see the files in LittleFS
|
||||||
|
delay(500); //Delay to allow Serial Monitor to start after a reset
|
||||||
|
Serial.println(F("\nPreparing filesystem with ESPUI resources"));
|
||||||
|
ESPUI.prepareFileSystem(); //Copy across current version of ESPUI resources
|
||||||
|
Serial.println(F("Done, files..."));
|
||||||
|
ESPUI.list(); //List all files on LittleFS, for info
|
||||||
}
|
}
|
||||||
|
|
||||||
void loop()
|
void loop()
|
||||||
|
Loading…
Reference in New Issue
Block a user