Visualizer #3

Merged
thomas merged 12 commits from rudi_s into main 2024-05-28 11:21:00 +02:00
1 changed files with 5 additions and 4 deletions
Showing only changes of commit c63f7e8b57 - Show all commits

View File

@ -146,9 +146,6 @@ function addHistory(packet) {
|| x === 'data_symbols') {
continue;
}
if (x === 'header_evm' || x === 'data_evm') {
continue;
};
keys.push(x);
}
keys.sort();
@ -164,7 +161,11 @@ function addHistory(packet) {
let i = 0;
for (const x of keys) {
chartHistory.data.datasets[i].data.push(packet[x]);
let data = packet[x];
if (data == -1e38 /* "NaN" */) {
data = undefined;
}
chartHistory.data.datasets[i].data.push(data);
i++;
}
chartHistory.data.labels.push((new Date() - state.start)/1000);