Type alias SafetyStatuswordBitValue

SafetyStatuswordBitValue: SafetyStatuswordBit & {
    value: number;
}

Extends the SafetyStatuswordBit interface by adding a value property. This represents a safety status word bit with its corresponding numerical value.

Example:

const statusBitValue: SafetyStatuswordBitValue = {
name: 'STO state',
abbrv: 'STO',
description: 'Safety Torque Off state',
value: 1
};

Generated using TypeDoc