1
0
Fork 0
mirror of https://github.com/lumapu/ahoy.git synced 2025-05-15 09:56:38 +02:00

* built visualization as xhr

* converted /update to xhr
* started web serial console /serial
* /save does not work yet - not debugged
This commit is contained in:
lumapu 2022-09-07 23:09:47 +02:00
parent 47c782e3f6
commit 8ae78842a8
16 changed files with 307 additions and 392 deletions
tools/esp8266/html

View file

@ -16,8 +16,10 @@ function getAjax(url, ptr) {
http.send(null);
}
function p() {
if(http.readyState == 4)
ptr(JSON.parse(http.responseText));
if(http.readyState == 4) {
if(null != http.responseText)
ptr(JSON.parse(http.responseText));
}
}
}
@ -60,6 +62,13 @@ function sel(name, opt, selId) {
function div(cl) {
e = document.createElement('div');
e.classList.add(cl);
e.classList.add(...cl);
return e;
}
function span(val, cl) {
e = document.createElement('span');
e.innerHTML = val;
e.classList.add(...cl);
return e;
}