torque-pro-assistant - v1.0.0
    Preparing search index...

    Interface PidEntry

    A single PID definition. key matches a field on SessionDataRow; category is filled in by the PID_BY_KEY index and is therefore optional on raw catalog entries.

    interface PidEntry {
        altUnit?: PidAltUnit;
        category?: PidCategoryId;
        color: string;
        key: string;
        label: string;
        range: readonly [number, number];
        unit: string;
    }
    Index

    Properties

    altUnit?: PidAltUnit

    Optional metric companion. Present only for PIDs that carry a metric value under a different field name.

    category?: PidCategoryId

    Identifier of the category this PID belongs to. Populated by PID_BY_KEY; absent from raw catalog entries.

    color: string

    Hex color used for this PID's line / fill in charts.

    key: string

    SessionDataRow field name.

    label: string

    Human-readable display label.

    range: readonly [number, number]

    Expected axis range for charts: [min, max] in display units.

    unit: string

    Display unit (e.g. 'rpm', 'mph', '°F').