| 77 | } // namespace |
| 78 | |
| 79 | void init() |
| 80 | { |
| 81 | Serial.begin(SERIAL_BAUD_RATE); |
| 82 | Serial.systemDebugOutput(true); |
| 83 | Serial.println(_F("Sming: SmtpClient example!")); |
| 84 | |
| 85 | spiffs_mount(); |
| 86 | |
| 87 | // Setup the WIFI connection |
| 88 | WifiStation.enable(true); |
| 89 | WifiStation.config(WIFI_SSID, WIFI_PWD); // Put your SSID and password here |
| 90 | |
| 91 | WifiEvents.onStationGotIP(onConnected); |
| 92 | } |
nothing calls this directly
no test coverage detected