OS: Linux, Board: Arduino Nano, IDE: Arduino IDE 2.3.7
When compiling it shows the error: Terminal.cpp:9 error: 'class String' has no member named 'isEmpty' .
Terminal.cpp
01 #include "MjolnFS.h"
02
03 void MjolnFileSystem::processCommand(String command)
04 {
05 if (command.startsWith("mk "))
06 {
07 String filename, data;
08 extractArgs(command, filename, data);
09 if (!filename.isEmpty() && !data.isEmpty())
10 {
Is there a pre-requisite I did not read about ?
Cheers!
OS: Linux, Board: Arduino Nano, IDE: Arduino IDE 2.3.7
When compiling it shows the error: Terminal.cpp:9 error: 'class String' has no member named 'isEmpty' .
Is there a pre-requisite I did not read about ?
Cheers!