Update 1.0.9

Fix issues with long SSID names
Make RSSI testing for remote receive tuning.
This commit is contained in:
Robert Strouse 2023-01-29 19:29:12 -08:00
parent 26714f71b7
commit 92ea0f6c99
7 changed files with 137 additions and 99 deletions

View file

@ -2,7 +2,7 @@
#ifndef configsettings_h
#define configsettings_h
#define FW_VERSION "v1.0.8"
#define FW_VERSION "v1.0.9"
enum DeviceStatus {
DS_OK = 0,
DS_ERROR = 1,
@ -38,7 +38,7 @@ class WifiSettings: BaseSettings {
WifiSettings();
char serverId[10] = "";
char hostname[32] = "ESPSomfyRTS";
char ssid[32] = "";
char ssid[64] = "";
char passphrase[32] = "";
bool ssdpBroadcast = true;
bool begin();