pamoja for TypeScript - v0.1.17
    Preparing search index...

    The eight data bytes of a J1939 frame, addressed by the signals inside them.

    A parameter group places each signal at a fixed byte offset, little-endian. A payload starts with every signal marked not available, so a controller writes only the signals it actually reports.

    Index
    • get bytes(): Buffer

      The eight data bytes, ready to put in a frame.

      Returns Buffer

    • Writes a two-byte little-endian signal at the offset its group defines.

      Parameters

      • at: number
      • value: number

      Returns void

    • Writes a one-byte signal at the offset its parameter group defines.

      Parameters

      • at: number
      • value: number

      Returns void

    • Reads a two-byte little-endian signal, or null if it would run past the payload.

      Parameters

      • at: number

      Returns number | null

    • Reads a one-byte signal, or null if the offset is past the payload.

      Parameters

      • at: number

      Returns number | null