Add [12_m1284p_WIZNET_HTTPServer_SDCARD_pages] prj

This commit is contained in:
maxxir_w
2019-01-18 14:35:51 +04:00
parent 4c8449a175
commit aa2ce7afd2
50 changed files with 17471 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
function getInfo()
{
var oUpdate;
setTimeout(function()
{
oUpdate = new AJAX('get_info.cgi', function(t)
{
try
{
//*eval(t);
document.getElementById('info_txt').innerHTML = t;
}
catch(e)
{
alert(e);
}
}
); oUpdate.doGet();
}
, 300); setTimeout('getInfo()', 3000);
}