Compare commits
No commits in common. "995addbabcaf7179991551de5ea538d2fe73fc3f" and "e4fa961ef0d6d4471bdb2bf1cf3ad4f5f34d7886" have entirely different histories.
995addbabc
...
e4fa961ef0
|
@ -410,15 +410,6 @@ window.addEventListener("load", (_) => {
|
||||||
socket.addEventListener("close", (event) => {
|
socket.addEventListener("close", (event) => {
|
||||||
status.innerHTML = "Offline";
|
status.innerHTML = "Offline";
|
||||||
status.style = colors.highlightFault;
|
status.style = colors.highlightFault;
|
||||||
|
|
||||||
// Indicate all process values as unknown
|
|
||||||
|
|
||||||
[failsafe, highpressure, rp, dp, trough, thigh, volts, mbar].forEach((el) => {
|
|
||||||
if (!el.innerHTML.includes("??")) {
|
|
||||||
el.innerHTML += "??";
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
if (connected) {
|
if (connected) {
|
||||||
console.log("Socket dead, reconnecting...");
|
console.log("Socket dead, reconnecting...");
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@ var (
|
||||||
flagFake bool
|
flagFake bool
|
||||||
flagListenHTTP string
|
flagListenHTTP string
|
||||||
flagPressureThresholdRough = ScientificNotationValue(1e-1)
|
flagPressureThresholdRough = ScientificNotationValue(1e-1)
|
||||||
flagPressureThresholdRoughHysteresis = ScientificNotationValue(3e-2)
|
flagPressureThresholdRoughHysteresis = ScientificNotationValue(2e-2)
|
||||||
flagPressureThresholdHigh = ScientificNotationValue(1e-4)
|
flagPressureThresholdHigh = ScientificNotationValue(1e-4)
|
||||||
flagPressureThresholdHighHysteresis = ScientificNotationValue(2e-5)
|
flagPressureThresholdHighHysteresis = ScientificNotationValue(2e-5)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue