Please enable JavaScript to view this site.

IDS peak 26.06. / uEye+ firmware 3.94

Returns the component that actually limits the DeviceLinkThroughput.

Name

DeviceLinkThroughputLimitComponent

Category

DeviceControl

Interface

Enumeration

Access

Read

Unit

-

Visibility

Expert

Values

Link

Sensor

Standard

IDS

Availability uEye+

icon-u3v

Availability uEye

-

Values description

Link: DeviceLinkThroughput is limited by the link.

Sensor: DeviceLinkThroughput is limited by the sensor.

Code example

C++

// Determine the current entry of DeviceLinkThroughputLimitComponent
std::string value = nodeMapRemoteDevice->FindNode<peak::core::nodes::EnumerationNode>("DeviceLinkThroughputLimitComponent")->CurrentEntry()->SymbolicValue();// Get a list of all available entries of DeviceLinkThroughputLimitComponent
auto allEntries = nodeMapRemoteDevice->FindNode<peak::core::nodes::EnumerationNode>("DeviceLinkThroughputLimitComponent")->Entries();
std::vector<std::shared_ptr<peak::core::nodes::EnumerationEntryNode>> availableEntries;
for(const auto & entry : allEntries)
{
  if ((entry->AccessStatus()!=peak::core::nodes::NodeAccessStatus::NotAvailable)
          && (entry->AccessStatus()!=peak::core::nodes::NodeAccessStatus::NotImplemented))
  {
      availableEntries.emplace_back(entry);
  }
}
 

C#

// Determine the current entry of DeviceLinkThroughputLimitComponent
string value = nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.EnumerationNode>("DeviceLinkThroughputLimitComponent").CurrentEntry().SymbolicValue();// Get a list of all available entries of DeviceLinkThroughputLimitComponent
allEntries = nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.EnumerationNode>("DeviceLinkThroughputLimitComponent").Entries();
List<string> availableEntries = new List<string>();
for(int i = 0; i < allEntries.Count(); ++i)
{
  if ((allEntries[i].AccessStatus() != IDSImaging.Peak.API.Core.Nodes.NodeAccessStatus.NotAvailable)
          && (allEntries[i].AccessStatus() != IDSImaging.Peak.API.Core.Nodes.NodeAccessStatus.NotImplemented))
  {
      availableEntries.Add(allEntries[i].SymbolicValue());
  }
}
 

Python

# Determine the current entry of DeviceLinkThroughputLimitComponent (str)
value = nodeMapRemoteDevice.FindNode("DeviceLinkThroughputLimitComponent").CurrentEntry().SymbolicValue()
# Get a list of all available entries of DeviceLinkThroughputLimitComponent
allEntries = nodeMapRemoteDevice.FindNode("DeviceLinkThroughputLimitComponent").Entries()
availableEntries = []
for entry in allEntries:
  if (entry.AccessStatus() != ids_peak.NodeAccessStatus_NotAvailable
          and entry.AccessStatus() != ids_peak.NodeAccessStatus_NotImplemented):
      availableEntries.append(entry.SymbolicValue())