Merge pull request #139 from MoonModules/upstream_patch_clusterf
AC minor patch cluster * Anti-Aliased Lines and Circles * replacing deprecated functions in ws.cpp * using global brightness in analogue clock overlay * fix for palette names (custom palettes) * bugfix for UI: when resizing the window, it always jumped to the Colors tab * UI: add webpage shortcuts for tabs
This commit is contained in:
@@ -76,7 +76,7 @@ private:
|
||||
bool sensorFound = false;
|
||||
|
||||
// Home Assistant and MQTT
|
||||
String mqttLuminanceTopic = FPSTR("");
|
||||
String mqttLuminanceTopic;
|
||||
bool mqttInitialized = false;
|
||||
bool HomeAssistantDiscovery = true; // Publish Home Assistant Discovery messages
|
||||
|
||||
|
||||
@@ -626,7 +626,7 @@ void MultiRelay::addToJsonInfo(JsonObject &root) {
|
||||
for (int i=0; i<MULTI_RELAY_MAX_RELAYS; i++) {
|
||||
if ((_relay[i].pin<0 && !usePcf8574) || !_relay[i].external) continue;
|
||||
uiDomString = F("Relay "); uiDomString += i;
|
||||
JsonArray infoArr = user.createNestedArray(uiDomString); // timer value
|
||||
infoArr = user.createNestedArray(uiDomString); // timer value
|
||||
|
||||
uiDomString = F("<button class=\"btn btn-xs\" onclick=\"requestJson({");
|
||||
uiDomString += FPSTR(_name);
|
||||
|
||||
Reference in New Issue
Block a user