MCPcopy Create free account
hub / github.com/bmorcelli/Launcher / readLineFromFile

Function readLineFromFile

src/webInterface.cpp:980–990  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

978}
979
980String readLineFromFile(File myFile) {
981 String line = "";
982 char character;
983
984 while (myFile.available()) {
985 character = myFile.read();
986 if (character == ';') break;
987 line += character;
988 }
989 return line;
990}
991
992void startWebUiLoopCommon(bool mode_ap) {
993 String txt;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected