MCPcopy Create free account
hub / github.com/OpenZWave/open-zwave / GetNodeManufacturerName

Method GetNodeManufacturerName

cpp/src/Manager.cpp:1174–1186  ·  view source on GitHub ↗

----------------------------------------------------------------------------- Get the manufacturer name of a node -----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

1172// Get the manufacturer name of a node
1173//-----------------------------------------------------------------------------
1174string Manager::GetNodeManufacturerName
1175(
1176 uint32 const _homeId,
1177 uint8 const _nodeId
1178)
1179{
1180 if( Driver* driver = GetDriver( _homeId ) )
1181 {
1182 return driver->GetNodeManufacturerName( _nodeId );
1183 }
1184
1185 return "Unknown";
1186}
1187
1188//-----------------------------------------------------------------------------
1189// <Manager::GetNodeProductName>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected