| 978 | } |
| 979 | |
| 980 | String 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 | |
| 992 | void startWebUiLoopCommon(bool mode_ap) { |
| 993 | String txt; |
nothing calls this directly
no outgoing calls
no test coverage detected