Minor title changes

This commit is contained in:
2026-07-24 08:53:40 +02:00
parent 23d7696076
commit d0141e821f
+4 -4
View File
@@ -42,7 +42,7 @@ load_state_sig.skip_plot = True
DECODER_RULES: Dict[str, FrameDef] = {
normalize_id("0x011F"): FrameDef(
can_id="0x011F",
description="Engine ECM Main Broadcast",
description="ECM",
color="#e41a1c",
signals=[
SignalDef(
@@ -56,7 +56,7 @@ DECODER_RULES: Dict[str, FrameDef] = {
unit="RPM",
),
SignalDef(
name="Pressure / Load",
name="Engine Load",
bit_start=16,
bit_length=16,
factor=0.05,
@@ -69,7 +69,7 @@ DECODER_RULES: Dict[str, FrameDef] = {
),
normalize_id("0x0CFF3300"): FrameDef(
can_id="0x0CFF3300",
description="Engine temperature and load state block",
description="Engine temperatures",
color="#0080fe",
signals=[
SignalDef(
@@ -94,7 +94,7 @@ DECODER_RULES: Dict[str, FrameDef] = {
),
load_state_sig,
CustomPlotDef(
name="Engine Load State",
name="Engine Load",
plot_func=lambda decoded, color: plot_load_state_pie(decoded, color),
),
],