add WEBSERVER macro to enable or disable webserver functionality

This commit is contained in:
lenvm 2023-11-26 14:52:39 +01:00
parent ce47ffd452
commit e7b1958ff5
3 changed files with 11 additions and 1 deletions

View file

@ -1,6 +1,8 @@
#include "USER_SETTINGS.h"
#ifdef WEBSERVER
const char* ssid = "REPLACE_WITH_YOUR_SSID"; // maximum of 63 characters;
const char* password = "REPLACE_WITH_YOUR_PASSWORD"; // minimum of 8 characters;
const char* ssidAP = "Battery Emulator"; // maximum of 63 characters;
const char* passwordAP = "123456789"; // minimum of 8 characters; set to NULL if you want the access point to be open
#endif