IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Returns the name of the device model. This value only changes on execution of the DeviceUpdateList command. Corresponds to the DeviceModelName feature of the RemoteDevice and is retrieved during device discovery.
Name |
DeviceModelName[DeviceSelector] |
Category |
|
Interface |
String |
Access |
Read |
Unit |
- |
Visibility |
Expert |
Values |
- |
Standard |
GenTL SFNC |
Availability uEye+ |
|
Availability uEye |
|
Code Example
C++
// Before accessing DeviceModelName, make sure DeviceSelector is set correctly
// Set DeviceSelector to 0
nodeMapInterface->FindNode<peak::core::nodes::IntegerNode>("DeviceSelector")->SetValue(0);
// Determine the current DeviceModelName
std::string value = nodeMapInterface->FindNode<peak::core::nodes::StringNode>("DeviceModelName")->Value();
C#
// Before accessing DeviceModelName, make sure DeviceSelector is set correctly
// Set DeviceSelector to 0
nodeMapInterface.FindNode<peak.core.nodes.IntegerNode>("DeviceSelector").SetValue(0);
// Determine the current DeviceModelName
string value = nodeMapInterface.FindNode<peak.core.nodes.StringNode>("DeviceModelName").Value();
Python
# Before accessing DeviceModelName, make sure DeviceSelector is set correctly
# Set DeviceSelector to 0 (int)
nodeMapInterface.FindNode("DeviceSelector").SetValue(0)
# Determine the current DeviceModelName (str)
value = nodeMapInterface.FindNode("DeviceModelName").Value()