wifi_util.h 247 Bytes
Newer Older
1
#ifndef WIFI_UTIL_H_INCLUDED
2
#define WIFI_UTIL_H_INCLUDED
3

Eric Duminil's avatar
Eric Duminil committed
4
5
6
7
8
9
#if defined(ESP8266)
#  include <ESP8266WiFi.h>
#elif defined(ESP32)
#  include <WiFi.h>
#endif

Eric Duminil's avatar
Eric Duminil committed
10
11
12
13
namespace wifi {
  extern char local_ip[];
  void connect(const char *hostname);
}
14
15

#endif