You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example in the case of a temperature sensor, I can get the value, but how can I get the if that value is being measured on Farenheit, Kelvong, etc?
Thanks!
The text was updated successfully, but these errors were encountered:
/// Gets the engineering unit of an OPC tag
///
/// Tag to get enginneering unit of
/// String
public String GetEngineeringUnit(string tag)
{
var item = new OpcDa.Item { ItemName = tag };
OpcDa.ItemProperty result;
try
{
var propertyCollection = _server.GetProperties(new[] { item }, new[] { OpcDa.Property.ENGINEERINGUINTS }, false)[0];
result = propertyCollection[0];
}
catch (NullReferenceException)
{
throw new OpcException("Could not find node because server not connected.");
}
return result.Value.ToString();
}
which returns what I need, but I can't find the same property for UA, do you know how to retrieve it?
For example in the case of a temperature sensor, I can get the value, but how can I get the if that value is being measured on Farenheit, Kelvong, etc?
Thanks!
The text was updated successfully, but these errors were encountered: