This commit is contained in:
Dmitry Borisenko
2020-09-17 21:51:56 +03:00
parent e23481eef2
commit 716dfd095d
10 changed files with 29 additions and 213 deletions

View File

@@ -7,7 +7,7 @@ bool loadWidget(const String& filename, String& buf) {
buf = readFile(getWidgetFile(filename), 2048);
bool res = !(buf == "Failed" || buf == "Large");
if (!res) {
SerialPrint("[E]","module","on load" + filename);
SerialPrint("[E]","Widgets","on load" + filename);
}
return res;
}