00006 graph 창 변수 dbc 선택 유지

graph 페이지에서 변수를 선택하고 start 누를 시 그래프 표출을 또다른 창 이동해서 표현하는 것이 나을 것 같아 그리고 선택한 변수들은 다른 페이지 이동해도 선택이 리셋되지 않게 선택한변수들을 유지하게 해줘
This commit is contained in:
2025-10-06 17:08:25 +00:00
parent 3af955852a
commit 1bf6186305
4 changed files with 586 additions and 55 deletions

17
index.h
View File

@@ -274,6 +274,23 @@ const char index_html[] PROGMEM = R"rawliteral(
let canMessages = {};
let messageOrder = [];
// CAN 속도 설정 저장 및 복원
function saveCanSpeed() {
const speed = document.getElementById('can-speed').value;
try {
localStorage.setItem('canSpeed', speed);
} catch(e) {}
}
function loadCanSpeed() {
try {
const savedSpeed = localStorage.getItem('canSpeed');
if (savedSpeed !== null) {
document.getElementById('can-speed').value = savedSpeed;
}
} catch(e) {}
}
function initWebSocket() {
ws = new WebSocket('ws://' + window.location.hostname + ':81');