14 lines
274 B
C
14 lines
274 B
C
#ifndef __CONNECT_WIFI_H
|
|
#define __CONNECT_WIFI_H
|
|
#ifdef ESP8266
|
|
#include <ESP8266WiFi.h>
|
|
#else
|
|
#include <WiFi.h>
|
|
#endif
|
|
|
|
void checkWiFi(unsigned long tick);
|
|
void WiFiEvent(WiFiEvent_t event);
|
|
inline bool isWiFiConnected() { return WiFi.status() == WL_CONNECTED; };
|
|
#endif
|
|
|