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

Method GetNodeBasic

cpp/src/Manager.cpp:1077–1090  ·  view source on GitHub ↗

----------------------------------------------------------------------------- Get the basic type of a node -----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

1075// Get the basic type of a node
1076//-----------------------------------------------------------------------------
1077uint8 Manager::GetNodeBasic
1078(
1079 uint32 const _homeId,
1080 uint8 const _nodeId
1081)
1082{
1083 uint8 basic = 0;
1084 if( Driver* driver = GetDriver( _homeId ) )
1085 {
1086 basic = driver->GetNodeBasic( _nodeId );
1087 }
1088
1089 return basic;
1090}
1091
1092//-----------------------------------------------------------------------------
1093// <Manager::GetNodeGeneric>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected