diff --git a/wled00/cfg.cpp b/wled00/cfg.cpp
index 18d5d2a77..f033909c6 100644
--- a/wled00/cfg.cpp
+++ b/wled00/cfg.cpp
@@ -211,6 +211,10 @@ bool deserializeConfig(JsonObject doc, bool fromFS) {
rlyMde = !relay["rev"];
}
+ CJSON(serialBaud, hw[F("baud")]);
+ if (serialBaud < 96 || serialBaud > 15000) serialBaud = 1152;
+ updateBaudRate(serialBaud *100);
+
//int hw_status_pin = hw[F("status")]["pin"]; // -1
JsonObject light = doc[F("light")];
@@ -630,6 +634,8 @@ void serializeConfig() {
hw_relay["pin"] = rlyPin;
hw_relay["rev"] = !rlyMde;
+ hw[F("baud")] = serialBaud;
+
//JsonObject hw_status = hw.createNestedObject("status");
//hw_status["pin"] = -1;
diff --git a/wled00/data/settings_sync.htm b/wled00/data/settings_sync.htm
index 0eb0cfb63..bb5b740e7 100644
--- a/wled00/data/settings_sync.htm
+++ b/wled00/data/settings_sync.htm
@@ -160,7 +160,21 @@ Hue Bridge IP:
Press the pushlink button on the bridge, after that save this page!
(when first connecting)
-Hue status: Disabled in this build