diff --git a/vehicle/komatsu.py b/vehicle/komatsu.py index 1988826..92a2389 100644 --- a/vehicle/komatsu.py +++ b/vehicle/komatsu.py @@ -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), ), ],