#ifndef __CONNECT_WIFI_H #define __CONNECT_WIFI_H #ifdef ESP8266 #include #else #include #endif void checkWiFi(unsigned long tick); void WiFiEvent(WiFiEvent_t event); inline bool isWiFiConnected() { return WiFi.status() == WL_CONNECTED; }; #endif