Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ObdSignal

import type { ObdSignal } from "https://aws-api.deno.dev/v0.4/services/iotfleetwise.ts?docs=full";

Information about signal messages using the on-board diagnostics (OBD) II protocol in a vehicle.

interface ObdSignal {
bitMaskLength?: number | null;
bitRightShift?: number | null;
byteLength: number;
offset: number;
pid: number;
pidResponseLength: number;
scaling: number;
serviceMode: number;
startByte: number;
}

§Properties

§
bitMaskLength?: number | null
[src]

The number of bits to mask in a message.

§
bitRightShift?: number | null
[src]

The number of positions to shift bits in the message.

§
byteLength: number
[src]

The length of a message.

§
offset: number
[src]

Indicates where data appears in the message.

§
pid: number
[src]

The diagnostic code used to request data from a vehicle for this signal.

§
pidResponseLength: number
[src]

The length of the requested data.

§
scaling: number
[src]

A multiplier used to decode the message.

§
serviceMode: number
[src]

The mode of operation (diagnostic service) in a message.

§
startByte: number
[src]

Indicates the beginning of the message.