FeedbackState coding group
This code group defines the states of a write on a FeedbackItem. The coding values match OPC UA status codes.
Lua access code
To access the code of the codings below, append the coding group name and coding name to syslib.model.codes
,
see an example below.
return syslib.model.codes.FeedbackState.BAD_ARGUMENTS_MISSING
Codings
Name | Code | Description |
---|---|---|
BAD_ARGUMENTS_MISSING | 2155216896 | Some data is missing in the write value as required by the configuration (BadArgumentsMissing) |
BAD_CONFIG | 2156462080 | The item is not configured correctly, e.g. a feedback path is unbound (BadConfigurationError) |
BAD_DATA_SYNTAX | 2159411200 | Invalid syntax for the write value (BadSyntaxError) |
BAD_NO_DATA | 2150760448 | No write has been issued yet (BadWaitingForInitialData) |
BAD_TIMEOUT | 2148139008 | No feedback was received for the last write within the timeout period (BadTimeout) |
BAD_WRITE | 2157772800 | Not all values could be written to the specified targets (BadDataLost) |
GOOD | 0 | Feedback for the write operation has been received and was validated (Good) |
UNCERTAIN_PENDING | 1083310080 | Write feedback is pending (UncertainInitialValue) |