#include < WiFi.h >
#include < ESPAsyncWebServer.h >
#include < Preferences.h >
const char* apSSID = "PAC-Setup";
const char* apPassword = "password";
const char* prefsNamespace = "app";
const char* prefsKeySSID = "ssid";
const char* prefsKeyPassword = "password";
const int mosfet1Pin = 32;
const int mosfet2Pin = 33;
const int mosfet3Pin = 25;
const int mosfet4Pin = 26;
AsyncWebServer server(80);
enum Configuration {
CONFIGURATION_1,
CONFIGURATION_2,
CONFIGURATION_3