15 lines
211 B
C
15 lines
211 B
C
#ifndef WIFI_H
|
|
#define WIFI_H
|
|
|
|
void wifiChangeHostname(const char *hostname);
|
|
|
|
void wifiChangeSSID(const char *ssid);
|
|
|
|
void wifiChangePassword(const char *password);
|
|
|
|
void wifiSetup();
|
|
|
|
void wifiLoop();
|
|
|
|
#endif
|