mirror of
https://github.com/wled/WLED.git
synced 2025-07-21 09:46:32 +00:00
Auto refreshing UI every 15secons.
This commit is contained in:
parent
0f7e22d8b7
commit
07428922c3
@ -1011,10 +1011,12 @@ function cmpP(a, b) {
|
|||||||
return a[1].n.localeCompare(b[1].n,undefined, {numeric: true});
|
return a[1].n.localeCompare(b[1].n,undefined, {numeric: true});
|
||||||
}
|
}
|
||||||
|
|
||||||
var jsonTimeout;
|
var jsonTimeout, refreshTimer;
|
||||||
function requestJson(command, rinfo = true, verbose = true, callback = null) {
|
function requestJson(command, rinfo = true, verbose = true, callback = null) {
|
||||||
d.getElementById('connind').style.backgroundColor = "#a90";
|
d.getElementById('connind').style.backgroundColor = "#a90";
|
||||||
lastUpdate = new Date();
|
lastUpdate = new Date();
|
||||||
|
if (refreshTimer) clearTimeout(refreshTimer);
|
||||||
|
refreshTimer = setTimeout(function(){requestJson({'v':true},false)},15000);
|
||||||
if (!jsonTimeout) jsonTimeout = setTimeout(showErrorToast, 3000);
|
if (!jsonTimeout) jsonTimeout = setTimeout(showErrorToast, 3000);
|
||||||
var req = null;
|
var req = null;
|
||||||
var e1 = d.getElementById('fxlist');
|
var e1 = d.getElementById('fxlist');
|
||||||
|
1055
wled00/html_ui.h
1055
wled00/html_ui.h
File diff suppressed because it is too large
Load Diff
@ -8,7 +8,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// version code in format yymmddb (b = daily build)
|
// version code in format yymmddb (b = daily build)
|
||||||
#define VERSION 2103130
|
#define VERSION 2103140
|
||||||
|
|
||||||
//uncomment this if you have a "my_config.h" file you'd like to use
|
//uncomment this if you have a "my_config.h" file you'd like to use
|
||||||
//#define WLED_USE_MY_CONFIG
|
//#define WLED_USE_MY_CONFIG
|
||||||
|
Loading…
x
Reference in New Issue
Block a user