fix: renamed -98V to -96V everywhere

This commit is contained in:
ISA
2025-09-11 10:36:52 +02:00
parent 5ef7e648eb
commit 538f9ca487
21 changed files with 547 additions and 75 deletions

View File

@@ -28,7 +28,7 @@ export type HistoryEntry = {
"+5V": number;
"+15V": number;
"-15V": number;
"-98V": number;
"-96V": number;
"ADC Temp": number;
"CPU Temp": number;
};
@@ -110,8 +110,8 @@ export const SystemCharts = ({ history }: Props) => {
fill: false,
},
{
label: "-98V",
data: history.map((h) => formatValue(h["-98V"])),
label: "-96V",
data: history.map((h) => formatValue(h["-96V"])),
borderColor: "rgba(234,179,8,1)",
backgroundColor: "rgba(234,179,8,0.5)",
fill: false,