 | ZWManagerGetNodeManufacturerName Method |
Get the manufacturer name of a device.
Namespace:
OpenZWave
Assembly:
OpenZWave (in OpenZWave.dll) Version: 255.255.255.255
Syntaxpublic string GetNodeManufacturerName(
uint homeId,
byte nodeId
)
Public Function GetNodeManufacturerName (
homeId As UInteger,
nodeId As Byte
) As String
public:
virtual String^ GetNodeManufacturerName(
[InAttribute] unsigned int homeId,
[InAttribute] unsigned char nodeId
) sealed
Parameters
- homeId
- Type: SystemUInt32
The Home ID of the Z-Wave controller that manages the node. - nodeId
- Type: SystemByte
The ID of the node to query.
Return Value
Type:
StringA string containing the node's manufacturer name.
Remarks
The manufacturer name would normally be handled by the Manufacturer Specific commmand class,
taking the manufacturer ID reported by the device and using it to look up the name from the
manufacturer_specific.xml file in the OpenZWave config folder.
However, there are some devices that do not support the command class, so to enable the user
to manually set the name, it is stored with the node data and accessed via this method rather
than being reported via a command class Value object.
See Also