File

src/sockets/bulkio/bulkio-control.ts

Description

BULKIO Control Message format

Index

Properties

Properties

type
type: ControlType
Type : ControlType

The 'type' (feature) To control

value
value: number
Type : number

The parameter setting for the feature

import { ControlType } from './control-type';

/**
 * BULKIO Control Message format
 * @property {ControlType} type - The type of control requested.
 * @property {number} value - The adjustment to make.
 */
export interface BulkioControl {
    /** The 'type' (feature) To control */
    type: ControlType;
    /** The parameter setting for the feature */
    value: number;
}

results matching ""

    No results matching ""