The nodes are taking over.Really enjoy what you've done with this @Jack Yaz ... here's a thought though ... I use the existing text only v1.1.3 on my AiMesh Nodes where amtm comes with firmware and via SSH can install useful utilities such as nsrum / scMerlin / Entware packages / Disk check for small USB where Entware resides.
Not sure how scMerlin v2.0 will go with its webui page which cannot be accessed on AiMesh Nodes ? Hopefully my concerns are unfounded and you will have a ready solution .
cli access is unchanged and still availableReally enjoy what you've done with this @Jack Yaz ... here's a thought though ... I use the existing text only v1.1.3 on my AiMesh Nodes where amtm comes with firmware and via SSH can install useful utilities such as nsrum / scMerlin / Entware packages / Disk check for small USB where Entware resides.
Not sure how scMerlin v2.0 will go with its webui page which cannot be accessed on AiMesh Nodes ? Hopefully my concerns are unfounded and you will have a ready solution .
@visortgw please uf and try again. Hopefully fixed https://github.com/jackyaz/scMerlin/commit/69b9cdb9a238b077a4a61071581df0ec83095544
I'll check the source for that model/branchHi! current version is scmerlin 2.0.0 on ASUS RT-AC3200 asuswrt-merlin 384.13.10
your mentionned patch is already included in my version.
Still empty "Temperatures" lines on webUI
command line says:
...
## v2.0.0 on RT-AC3200 ##
...
Temperatures
CPU:63°C
2.4 GHz: 47°C
5 GHz: 49.5°C
Press enter to continue...
Can you help ?
Thanks
@itibi can you check for javascript errors in F12 console please? i can't see why this shouldn't work
I'll check the source for that model/branch
...
## v2.0.0 on RT-AC3200 ##
...
Temperatures
CPU:63°C
2.4 GHz: 47°C
5 GHz: 49.5°C
Press enter to continue..
think I've fixed it, try option uf please
think I've fixed it, try option uf please
Did it download the new asp page? I added a check to see if that variable was null or undefined and skip if sodone. same result. sorry.
View attachment 27629
function update_temperatures(){
$j.ajax({
url: '/ajax_coretmp.asp',
dataType: 'script',
error: function(xhr){
update_temperatures();
},
success: function(response){
code = "<b>2.4 GHz:</b><span> " + curr_coreTmp_2_raw + "</span>";
if(typeof wl_info.band5g_2_support == 'undefined' || wl_info.band5g_2_support == null){
code += " - <b>5 GHz:</b> <span>" + curr_coreTmp_5_raw + "</span>";
}
else{
if(wl_info.band5g_2_support){
code += " - <b>5 GHz-1:</b> <span>" + curr_coreTmp_5_raw + "</span>";
code += " - <b>5 GHz-2:</b> <span>" + curr_coreTmp_52_raw + "</span>";
}
else if (band5g_support){
code += " - <b>5 GHz:</b> <span>" + curr_coreTmp_5_raw + "</span>";
}
}
var CPUTemp = "";
if(typeof curr_cpuTemp === 'undefined' || curr_cpuTemp === null){
CPUTemp = curr_coreTmp_cpu;
}
else{
CPUTemp = curr_cpuTemp;
}
if(CPUTemp != ""){
code +=" - <b>CPU:</b> <span>" + parseInt(CPUTemp) +"°C</span>";
}
document.getElementById("temp_td").innerHTML = code;
setTimeout("update_temperatures();", 3000);
}
});
}
Hm maybe i need triple = for the testThere is no version number at the beginning of your script
Here is the content of /tmp/var/wwwext/user2.asp ( 30339 Nov 13 18:36 /tmp/var/wwwext/user2.asp) :
Welcome To SNBForums
SNBForums is a community for anyone who wants to learn about or discuss the latest in wireless routers, network storage and the ins and outs of building and maintaining a small network.
If you'd like to post a question, simply register and have at it!
While you're at it, please check out SmallNetBuilder for product reviews and our famous Router Charts, Ranker and plenty more!