wifi_util.h 262 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef WIFI_UTIL_H_INCLUDED
#  define WIFI_UTIL_H_INCLUDED
#  if defined(ESP8266)
#    include <ESP8266WiFi.h>
#  elif defined(ESP32)
#    include <WiFi.h>
#  endif

#include "led_effects.h"
#include "config.h"
void WiFiConnect(const String &hostname);

#endif