1
0
mirror of https://github.com/s00500/ESPUI.git synced 2024-06-16 07:53:32 +00:00
Signed-off-by: Lukas Bachschwell <lukas@lbsfilm.at>
This commit is contained in:
Lukas Bachschwell 2020-08-26 22:00:20 +02:00
parent 6506f6fe1c
commit cda1a573d6
Signed by: lbsadmin
GPG Key ID: CCC6AA87CC8DF425
2 changed files with 6 additions and 7 deletions

View File

@ -563,7 +563,7 @@ bool ESPUIClass::removeControl(uint16_t id, bool force_reload_ui)
} }
else else
{ {
jsonDom(); jsonDom(); // resends to all
} }
return true; return true;
} }
@ -670,6 +670,10 @@ void ESPUIClass::updateControl(Control *control, int clientId)
if (clientId < 0) if (clientId < 0)
{ {
if (this->verbosity >= Verbosity::VerboseJSON)
{
Serial.println("TextAll");
}
this->ws->textAll(json); this->ws->textAll(json);
return; return;
} }
@ -684,11 +688,6 @@ void ESPUIClass::updateControl(Control *control, int clientId)
if (clientId != tryId) if (clientId != tryId)
{ {
this->ws->client(tryId)->text(json); this->ws->client(tryId)->text(json);
if (this->verbosity >= Verbosity::VerboseJSON)
{
Serial.println(json);
}
} }
count++; count++;

View File

@ -256,7 +256,7 @@ public:
const char *ui_title = "ESPUI"; // Store UI Title and Header Name const char *ui_title = "ESPUI"; // Store UI Title and Header Name
Control *controls = nullptr; Control *controls = nullptr;
void jsonReload(); void jsonReload();
void jsonDom(AsyncWebSocketClient *client); void jsonDom(AsyncWebSocketClient *client = nullptr);
Verbosity verbosity; Verbosity verbosity;