Interface PartConfigurationTable

Represents a tabular configuration for a part, such as a motor or encoder.

The header array defines the columns, each specifying a name and an optional address, where the address typically includes an index and subindex identifying the parameter.

The values array contains rows of configuration data, with each row aligned to the header columns.

Hierarchy

  • PartConfigurationTable

Properties

Properties

header: {
    address?: string;
    name: string;
}[]

The columns describing each part or field.

values: (null | string | number | boolean)[][]

Rows of configuration data matching the header columns.

Generated using TypeDoc