Option to send raw data frame to MQTT

This commit is contained in:
Gunnar Skjold
2022-01-29 19:53:59 +01:00
parent 77ce5d8e90
commit fb8d9e51a6
5 changed files with 29 additions and 8 deletions

View File

@@ -551,6 +551,7 @@ void AmsWebServer::configMqttHtml() {
for(int i = 0; i<4; i++) {
html.replace("{f" + String(i) + "}", mqtt.payloadFormat == i ? "selected" : "");
}
html.replace("{f255}", mqtt.payloadFormat == 255 ? "selected" : "");
html.replace("{s}", mqtt.ssl ? "checked" : "");