Replies: 2 comments 2 replies
-
When you subscribe to the Value attribute you receive a DataValue, which has as StatusCode component. |
Beta Was this translation helpful? Give feedback.
1 reply
-
As indicated in code: private static String quality(StatusCode statusCode) {
if (statusCode.isGood()) {
return "good";
} else if (statusCode.isBad()) {
return "bad";
} else if (statusCode.isUncertain()) {
return "uncertain";
} else {
return "unknown";
}
} quality is just a string name for status code name. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When I link to the opc server, can I get the value of quailty on the opc server?
Beta Was this translation helpful? Give feedback.
All reactions