| 87 | } // namespace |
| 88 | |
| 89 | void init() |
| 90 | { |
| 91 | Serial.begin(SERIAL_BAUD_RATE); // Enable serial |
| 92 | Serial.systemDebugOutput(true); // Allow debug output to serial |
| 93 | |
| 94 | spiffs_mount(); |
| 95 | |
| 96 | WifiStation.enable(true); |
| 97 | |
| 98 | System.onReady(startWebServer); |
| 99 | } |
nothing calls this directly
no test coverage detected