Skip to content

Commit

Permalink
Fixed standard WebUI
Browse files Browse the repository at this point in the history
  • Loading branch information
shining-man committed Jan 11, 2024
1 parent 812ddbf commit 4b25b0a
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 14 deletions.
12 changes: 12 additions & 0 deletions include/WebSettings.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,18 @@ class WebSettings {
static void getIdFromParamId(uint16_t paramId, uint16_t &id, uint8_t &groupIdx);

private:
const char *parameterFile;
String str_mConfName;
String str_mConfigfile;
uint8_t u8_mJsonArraySize;
String str_mAjaxGetDataTimerHandlerName;
uint16_t u16_mAjaxGetDataTimerSec;

uint8_t u8_mButtons = 0;
String str_mButton1Text;
String str_mButton2Text;
String str_mButton3Text;

//Parameterfile
boolean readConfig();

Expand Down
2 changes: 1 addition & 1 deletion include/defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#include "params_dt.h"

#define BSC_SW_VERSION "V0.5.3"
#define BSC_SW_VERSION "V0.5.4"

static const char COMPILE_DATE_TIME[] = "";

Expand Down
Binary file modified lib_precompiled/libwebapp2.a
Binary file not shown.
Binary file modified lib_precompiled/libwebapp2_serial_log.a
Binary file not shown.
13 changes: 0 additions & 13 deletions src/WebSettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,6 @@ static sparse_hash_map<uint16_t, bool> settingValues_bo;
static sparse_hash_map<uint16_t, std::string> settingValues_str;


const char *parameterFile;
String str_mConfName;
String str_mConfigfile;
uint8_t u8_mJsonArraySize;
String str_mAjaxGetDataTimerHandlerName;
uint16_t u16_mAjaxGetDataTimerSec;

uint8_t u8_mButtons = 0;
String str_mButton1Text;
String str_mButton2Text;
String str_mButton3Text;


static char _buf[2000];
static String st_mSendBuf = "";
static String str_lTmpGetString;
Expand Down

0 comments on commit 4b25b0a

Please sign in to comment.