20 lines
384 B
C
20 lines
384 B
C
|
|
#include <WiFi.h>
|
|
#include "Settings.h"
|
|
|
|
///////////////////////////////
|
|
|
|
struct Configure {
|
|
|
|
struct {
|
|
char ssid[MAX_SSID+1];
|
|
char pwd[MAX_PWD+1];
|
|
} wifiData;
|
|
|
|
char setupCode[9];
|
|
|
|
void processRequest(WiFiClient &client, char *body, char *formData);
|
|
int getFormValue(char *formData, char *tag, char *value, int maxSize);
|
|
|
|
};
|