|
|
@@ -4,10 +4,10 @@ let xhrUpd = new XMLHttpRequest(); |
|
|
|
xhrUpd.onreadystatechange = function () { |
|
|
|
if (xhrUpd.readyState == 4) { |
|
|
|
if (xhrUpd.status == 200) { |
|
|
|
console.log(xhrUpd.responseText); |
|
|
|
console.log("xhrUpd: ", xhrUpd.responseText); |
|
|
|
} |
|
|
|
else { |
|
|
|
console.log("status:", xhrUpd.status); |
|
|
|
console.log("xhrUpd: status=", xhrUpd.status); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
@@ -30,64 +30,59 @@ function reloadRangeValues() { |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
// connect actions to range inputs |
|
|
|
function rangeToOutput(range, output) { |
|
|
|
document.getElementById(range).oninput = function () { |
|
|
|
document.getElementById(output).innerHTML = this.value; |
|
|
|
// add to pending range changes |
|
|
|
rangeValues[this.id] = this.value; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
rangeToOutput("range_act_pwm", "out_act_pwm"); |
|
|
|
rangeToOutput("range_idl_pwm", "out_idl_pwm"); |
|
|
|
rangeToOutput("range_tim_sta", "out_tim_sta"); |
|
|
|
rangeToOutput("range_tim_ldr", "out_tim_ldr"); |
|
|
|
rangeToOutput("range_ldr_shw", "out_ldr_shw"); |
|
|
|
|
|
|
|
let xhr = new XMLHttpRequest(); |
|
|
|
|
|
|
|
xhr.onreadystatechange = function () { |
|
|
|
if (xhr.readyState == 4) { |
|
|
|
if (xhr.status == 200) { |
|
|
|
console.log(xhr.responseText); |
|
|
|
terminal = document.getElementById("term"); |
|
|
|
autoscroll = document.getElementById("scroll"); |
|
|
|
terminal.innerHTML += xhr.responseText; |
|
|
|
if (autoscroll.checked) |
|
|
|
terminal.scrollTop = terminal.scrollHeight; |
|
|
|
} |
|
|
|
else { |
|
|
|
console.log("status:", xhr.status); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
function reloadTerminal() { |
|
|
|
xhr.open("POST", "/terminal", true); |
|
|
|
xhr.send(); |
|
|
|
const terminal = document.querySelector("#term"); |
|
|
|
const autoscroll = document.querySelector("#scroll"); |
|
|
|
|
|
|
|
fetch(`/terminal`, { |
|
|
|
method: 'POST', |
|
|
|
headers: { |
|
|
|
'Content-Type': 'application/x-www-form-urlencoded', |
|
|
|
}, |
|
|
|
body: '' |
|
|
|
}) |
|
|
|
.then(response => response.text()) |
|
|
|
.then(data => { |
|
|
|
if(data.length > 0) { |
|
|
|
terminal.innerHTML += data; |
|
|
|
if (autoscroll.checked) |
|
|
|
terminal.scrollTop = terminal.scrollHeight; |
|
|
|
} |
|
|
|
}) |
|
|
|
.catch(error => console.log('Error:', error)); |
|
|
|
}; |
|
|
|
|
|
|
|
document.addEventListener('DOMContentLoaded', () => { |
|
|
|
setInterval(reloadTerminal, 1000); |
|
|
|
setInterval(reloadRangeValues, 1000); |
|
|
|
}); |
|
|
|
|
|
|
|
// use data- attributes for action |
|
|
|
document.querySelectorAll('.control').forEach((button) => { |
|
|
|
button.onclick = () => { |
|
|
|
fetch(`/action`, { |
|
|
|
method: 'POST', |
|
|
|
headers: { |
|
|
|
'Content-Type': 'application/x-www-form-urlencoded', |
|
|
|
}, |
|
|
|
body: `control=${button.dataset.action}` |
|
|
|
}) |
|
|
|
.then(response => console.log(response)) |
|
|
|
.catch(error => console.log('Error:', error)); |
|
|
|
} |
|
|
|
|
|
|
|
// use data- attributes for action |
|
|
|
document.querySelectorAll('.control').forEach((button) => { |
|
|
|
button.onclick = () => { |
|
|
|
fetch(`/action`, { |
|
|
|
method: 'POST', |
|
|
|
headers: { |
|
|
|
'Content-Type': 'application/x-www-form-urlencoded', |
|
|
|
}, |
|
|
|
body: `control=${button.dataset.action}` |
|
|
|
}) |
|
|
|
.then(response => console.log(response)) |
|
|
|
.catch(error => console.log('Error:', error)); |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
document.querySelectorAll('.regler').forEach((regler) => { |
|
|
|
regler.oninput = () => { |
|
|
|
document.querySelector(`#${regler.dataset.output}`).innerHTML = regler.value; |
|
|
|
rangeValues[regler.id] = regler.value; |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
document.querySelector('#clear_term').onclick = () => { |
|
|
|
document.querySelector("#term").innerHTML = ''; |
|
|
|
}; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
document.querySelector('#clear_term').onclick = () => { |
|
|
|
document.querySelector("#term").innerHTML = ''; |
|
|
|
}; |