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

Method IsNodeZWavePlus

cpp/src/Manager.cpp:1056–1069  ·  view source on GitHub ↗

----------------------------------------------------------------------------- Get if the Node is a ZWave Plus Supported Node -----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

1054// Get if the Node is a ZWave Plus Supported Node
1055//-----------------------------------------------------------------------------
1056bool Manager::IsNodeZWavePlus
1057(
1058 uint32 const _homeId,
1059 uint8 const _nodeId
1060)
1061{
1062 bool version = false;
1063 if( Driver* driver = GetDriver( _homeId ) )
1064 {
1065 version = driver->IsNodeZWavePlus( _nodeId );
1066 }
1067
1068 return version;
1069}
1070
1071
1072

Callers 1

GetNodeTypeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected