@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
34 lines (33 loc) • 1.58 kB
TypeScript
import type { UAMethod, UAProperty } from "node-opcua-address-space-base";
import type { DataType } from "node-opcua-variant";
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "./ua_finite_state_machine";
import type { UAState } from "./ua_state";
import type { UATransition } from "./ua_transition";
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |ShelvedStateMachineType i=2929 |
* |isAbstract |false |
*/
export interface UAShelvedStateMachine_Base extends UAFiniteStateMachine_Base {
unshelveTime: UAProperty<number, DataType.Double>;
unshelved: UAState;
timedShelved: UAState;
oneShotShelved: UAState;
unshelvedToTimedShelved: UATransition;
unshelvedToOneShotShelved: UATransition;
timedShelvedToUnshelved: UATransition;
timedShelvedToOneShotShelved: UATransition;
oneShotShelvedToUnshelved: UATransition;
oneShotShelvedToTimedShelved: UATransition;
timedShelve: UAMethod;
timedShelve2?: UAMethod;
unshelve: UAMethod;
unshelve2?: UAMethod;
oneShotShelve: UAMethod;
oneShotShelve2?: UAMethod;
}
export interface UAShelvedStateMachine extends UAFiniteStateMachine, UAShelvedStateMachine_Base {
}