interface CanSignalProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTFleetWise.CfnDecoderManifest.CanSignalProperty |
Java | software.amazon.awscdk.services.iotfleetwise.CfnDecoderManifest.CanSignalProperty |
Python | aws_cdk.aws_iotfleetwise.CfnDecoderManifest.CanSignalProperty |
TypeScript | @aws-cdk/aws-iotfleetwise » CfnDecoderManifest » CanSignalProperty |
(Optional) Information about a single controller area network (CAN) signal and the messages it receives and transmits.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iotfleetwise from '@aws-cdk/aws-iotfleetwise';
const canSignalProperty: iotfleetwise.CfnDecoderManifest.CanSignalProperty = {
factor: 'factor',
isBigEndian: 'isBigEndian',
isSigned: 'isSigned',
length: 'length',
messageId: 'messageId',
offset: 'offset',
startBit: 'startBit',
// the properties below are optional
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| factor | string | A multiplier used to decode the CAN message. |
| is | string | Whether the byte ordering of a CAN message is big-endian. |
| is | string | Whether the message data is specified as a signed value. |
| length | string | How many bytes of data are in the message. |
| message | string | The ID of the message. |
| offset | string | The offset used to calculate the signal value. |
| start | string | Indicates the beginning of the CAN message. |
| name? | string | (Optional) The name of the signal. |
factor
Type:
string
A multiplier used to decode the CAN message.
isBigEndian
Type:
string
Whether the byte ordering of a CAN message is big-endian.
isSigned
Type:
string
Whether the message data is specified as a signed value.
length
Type:
string
How many bytes of data are in the message.
messageId
Type:
string
The ID of the message.
offset
Type:
string
The offset used to calculate the signal value.
Combined with factor, the calculation is value = raw_value * factor + offset .
startBit
Type:
string
Indicates the beginning of the CAN message.
name?
Type:
string
(optional)
(Optional) The name of the signal.

.NET
Java
Python
TypeScript