From 2dedbf469a6a0b55fcfd9de43e467371e64724bc Mon Sep 17 00:00:00 2001
From: Frank <91616163+softhack007@users.noreply.github.com>
Date: Wed, 11 Mar 2026 19:02:29 +0100
Subject: [PATCH] minor info page updates
* removed core restart reasons (esp restart code is sufficient)
* added time info
* moved repo to last line
---
wled00/data/index.js | 9 +++++----
wled00/json.cpp | 3 +++
2 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/wled00/data/index.js b/wled00/data/index.js
index c4cccc33..2a4e1d81 100644
--- a/wled00/data/index.js
+++ b/wled00/data/index.js
@@ -720,6 +720,7 @@ ${inforow("Build",i.vid)}
${i.leds.count?inforow("Total LEDs",i.leds.count):""}
${inforow("Estimated current",pwru)}
${inforow("Average FPS",i.leds.fps)}
+
|
${inforow("Signal strength",i.wifi.signal +"% ("+ i.wifi.rssi, " dBm)")}
${inforow("MAC address",i.mac)}
${inforow("Uptime",getRuntimeStr(i.uptime))}
@@ -737,12 +738,12 @@ ${i.tpsram?inforow("PSRAM " + (i.psrmode?"("+i.psrmode+" mode) ":"") + " ☾",(i
${i.e32flash?inforow("Flash mode "+i.e32flashmode+i.e32flashtext + " ☾",i.e32flash+" MB, "+i.e32flashspeed," Mhz"):""}
${i.e32model?inforow(i.e32model + " ☾",i.e32cores +" core(s),"," "+i.e32speed+" Mhz"):""}
${inforow("Environment",i.arch + " " + i.core + ( i.lwip ? " (" + i.lwip + ")" : ""))}
-${i.repo?inforow("GitHub","" + i.repo + ""):""}
-
|
+
${i.e32code?inforow("Last ESP Restart ☾",i.e32code+" "+i.e32text):""}
-${i.e32core0code?inforow("Core0 rst reason ☾",i.e32core0code, " "+i.e32core0text):""}
-${i.e32core1code?inforow("Core1 rst reason ☾",i.e32core1code, " "+i.e32core1text):""}
+
+
+${i.repo?inforow("GitHub","" + i.repo + ""):""}
`;
gId('kv').innerHTML = cn;
// update all sliders in Info
diff --git a/wled00/json.cpp b/wled00/json.cpp
index bb0f4039..ce2d0d74 100644
--- a/wled00/json.cpp
+++ b/wled00/json.cpp
@@ -1227,6 +1227,9 @@ void serializeInfo(JsonObject root)
// end WLEDMM
root[F("uptime")] = millis()/1000 + rolloverMillis*4294967;
+ char time[48];
+ getTimeString(time);
+ root[F("time")] = time;
usermods.addToJsonInfo(root);